/* =============================================
   CAVA UNIFORM - Style Sheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --blue: #004695;
  --blue-light: #1a5fbf;
  --blue-dark: #003070;
  --orange: #F2A71B;
  --orange-dark: #d4900f;
  --white: #ffffff;
  --gray-bg: #f0f4f8;
  --gray-light: #efefef;
  --text-dark: #1a1a2e;
  --text-gray: #555;
  --border-radius: 10px;
  --shadow: 0 4px 20px rgba(0, 70, 149, 0.12);
  --shadow-hover: 0 8px 32px rgba(0, 70, 149, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  padding: 8px 20px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.logo-main {
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-main sup {
  font-size: 14px;
  font-weight: 600;
}

.logo-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--blue);
  margin-top: -2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--blue);
  color: white;
}

.btn-orange {
  background: var(--orange);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242,167,27,0.4);
}

.btn-orange .icon-download {
  width: 18px;
  height: 18px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

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

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid white;
  overflow: hidden;
  margin-left: -10px;
  position: relative;
  background: var(--gray-light);
  flex-shrink: 0;
}

.avatar-circle:first-child {
  margin-left: 0;
}

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

.avatar-color-1 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.avatar-color-2 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.avatar-color-3 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.avatar-color-4 { background: linear-gradient(135deg, #fa709a, #fee140); }

.avatar-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 13px;
}

/* =============================================
   FLOATING SIDEBAR
   ============================================= */
.floating-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  padding: 8px 14px 8px 10px;
  border-left: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  min-width: 180px;
  box-shadow: 2px 2px 12px rgba(0,0,0,0.18);
}

.floating-btn:hover {
  background: var(--orange-dark);
  min-width: 200px;
}

.floating-btn-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.5);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.floating-btn-text {
  display: flex;
  flex-direction: column;
}

.floating-btn-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.floating-btn-phone {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
}

/* Chat bubble */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 999;
  background: var(--blue);
  color: white;
  border-radius: 50px;
  padding: 10px 18px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,70,149,0.4);
  transition: all 0.25s;
}

.chat-widget:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 30px rgba(0,70,149,0.55);
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.chat-name {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.front-size-18{
  font-size: 18px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f0fb 40%, #f5faff 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 20px;
}

.hero-brand {
  font-size: 42px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  display: block;
  letter-spacing: 1px;
}

.hero-script {
  font-family: 'Dancing Script', cursive, serif;
  font-size: 52px;
  font-style: italic;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  display: block;
  margin: 4px 0;
}

.hero-headline {
  font-size: 26px;
  font-weight: 900;
  color: var(--orange);
  text-transform: uppercase;
  line-height: 1.1;
  display: block;
}

.hero-sub {
  display: inline-block;
  background: white;
  color: var(--text-gray);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero-usps {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-usp-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero-usp-item span em {
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,70,149,0.15));
  border-radius: 10px;
}

/* =============================================
   SAVINGS BANNER
   ============================================= */
.savings-banner {
  background: white;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.savings-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0px;
  min-height: 140px;
}

.savings-item {
  display: flex;
  align-items: center;
}

.item-top {
  align-self: flex-start;
}

.item-middle {
  align-self: center;
}

.item-bottom {
  align-self: flex-end;
}

.savings-number-wrap {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.savings-banner::before,
.savings-banner::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: var(--orange);
  opacity: 0.6;
}

.savings-banner::before { left: 140px; }
.savings-banner::after { right: 140px; }

.savings-text {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 1px;
  margin: 0;
}

.savings-number {
  font-size: 100px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.savings-percent {
  font-size: 50px;
  font-weight: 900;
  color: var(--blue);
}

.savings-chi-phi {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
  margin: 0;
}

/* =============================================
   USP CARDS
   ============================================= */
.usp-section {
  background: var(--gray-bg);
  padding: 60px 20px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.usp-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  position: relative;
}

.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.usp-card-image {
  width: 100%;
  height: 200px;
  background: var(--gray-light);
  overflow: hidden;
  position: relative;
}

.usp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.usp-card:hover .usp-card-image img {
  transform: scale(1.06);
}

.usp-number {
  position: absolute;
  bottom: -10px;
  right: 16px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(0, 70, 149, 0.1);
  line-height: 1;
  pointer-events: none;
}

.usp-card-body {
  padding: 22px 24px 28px;
}

.usp-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 14px;
}

.usp-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.usp-card-list li {
  color: var(--blue-light);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.usp-card-list li::before {
  content: '•';
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

/* =============================================
   BENEFITS BAR
   ============================================= */
.benefits-bar {
  background: var(--blue);
  padding: 40px 20px;
}

.benefits-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: white;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.benefit-label {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

/* =============================================
   COMPANY PROFILE
   ============================================= */
.company-section {
  padding: 60px 20px;
  background: white;
}

.company-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.company-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.company-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 8px;
}

.company-sub {
  font-size: 16px;
  color: var(--text-gray);
  font-weight: 500;
}

.company-logo-badge {
  font-size: 56px;
  font-weight: 900;
  color: var(--blue);
  text-align: center;
  letter-spacing: 2px;
  line-height: 1;
}

.company-logo-badge span {
  display: block;
  font-size: 14px;
  letter-spacing: 6px;
  font-weight: 600;
  color: var(--text-gray);
}

.factory-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.factory-images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 30px;
  background: var(--gray-bg);
  border-radius: 16px;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  font-size: 32px;
  color: var(--blue);
}

.stat-number {
  font-size: 40px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
}

/* =============================================
   SECTION HEADER (Blue banner)
   ============================================= */
.section-header-blue {
  background: var(--blue);
  padding: 36px 20px;
  text-align: center;
}

.section-header-blue h2 {
  font-size: 38px;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-header-blue::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 12px auto 12px;
}

.section-header-blue p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 400;
}

/* =============================================
   PRODUCT CATEGORIES
   ============================================= */
.products-section {
  padding: 50px 20px;
  background: white;
}

.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  border: 2.5px solid var(--blue);
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 70, 149, 0.2);
}

.product-card-img {
  width: 100%;
  height: 300px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  overflow: hidden;
  /* border-radius: 10%; */
}

.product-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-name {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SPA */
.products-spa-section {
  padding: 50px 20px;
  background: white;
}

.products-spa-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-spa-card {
  border: 2.5px solid var(--blue);
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}

.product-spa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 70, 149, 0.2);
}

.product-spa-card-img {
  width: 100%;
  height: 300px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  overflow: hidden;
  /* border-radius: 10%; */
}

.product-spa-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.product-spa-card:hover .product-spa-card-img img {
  transform: scale(1.08);
}

.product-spa-card-name {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Product color variants */
.product-img-polo {
  background: linear-gradient(135deg, #fff5f5, #ffe8e8);
}

.product-img-tshirt {
  background: linear-gradient(135deg, #f0f4ff, #e0e8ff);
}

.product-img-shirt {
  background: linear-gradient(135deg, #f0f8ff, #e8f4ff);
}

.product-img-jacket {
  background: linear-gradient(135deg, #fff5f0, #ffe8e0);
}

.product-img-hat {
  background: linear-gradient(135deg, #f0f4ff, #dde8ff);
}

.product-img-apron {
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.product-img-pants {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.product-img-vest {
  background: linear-gradient(135deg, #f0f0ff, #e0e0f5);
}

/* Minimal product illustrations using CSS */
.product-illustration {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section {
  padding: 50px 20px;
  background: var(--gray-bg);
}

.gallery-grid {
  max-width: 1200px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  height: 500px;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.gallery-img {
  width: 100%;
  height: 450px;
  background: var(--gray-light);
  overflow: hidden;
  position: relative;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-card:hover .gallery-img img {
  transform: scale(1.06);
}

.gallery-label {
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
}

.gallery-placeholder .icon {
  font-size: 48px;
  opacity: 0.5;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  padding: 60px 20px;
  background: white;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 70, 149, 0.1);
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--gray-light);
}

.testimonial-body {
  padding: 18px;
}

.stars {
  color: #FFD700;
  font-size: 16px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-info span {
  font-size: 12px;
  color: var(--text-gray);
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section {
  padding: 60px 20px;
  background: var(--gray-bg);
}

.process-grid {
  max-width: 1000px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 4px solid white;
  box-shadow: 0 4px 16px rgba(0, 70, 149, 0.3);
}

.process-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}

.process-desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* =============================================
   MATERIALS SECTION
   ============================================= */
.materials-section {
  padding: 60px 20px;
  background: white;
}

.materials-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.materials-sub {
  text-align: center;
  color: var(--text-gray);
  font-size: 15px;
  margin-bottom: 36px;
}

.materials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.material-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.material-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.material-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.material-body {
  padding: 20px;
  background: white;
}

.material-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
}

.material-desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 70px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 36px;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 30px;
}

.cta-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 16px 44px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 30px rgba(242, 167, 27, 0.5);
}

.cta-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(242, 167, 27, 0.65);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0a1628;
  color: rgba(255,255,255,0.85);
  padding: 50px 20px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 26px;
}

.footer-company-name {
  font-size: 26px;
  font-weight: 900;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.footer-company-name span {
  display: block;
  font-size: 10px;
  letter-spacing: 5px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact-icon {
  color: var(--orange);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a::before {
  content: '›';
  color: var(--orange);
  font-size: 16px;
}

.footer-links li a:hover {
  color: var(--orange);
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  padding-top: 10px;
}

/* =============================================
   SECTION TITLES
   ============================================= */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--text-gray);
  font-size: 15px;
  margin-bottom: 36px;
}

.divider-orange {
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 10px auto 16px;
  border-radius: 2px;
}

/* =============================================
   PHOTO GRID (Factory)
   ============================================= */
.photo-grid {
  max-width: 1000px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 12px;
}

.photo-grid-item {
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray-light);
}

.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.photo-grid-item:hover img {
  transform: scale(1.06);
}

/* Gradient placeholder images */
.placeholder-factory-1 { background: linear-gradient(135deg, #1a3a6b, #2563b0); }
.placeholder-factory-2 { background: linear-gradient(135deg, #0e2144, #1a4594); }
.placeholder-factory-3 { background: linear-gradient(135deg, #2563b0, #3b82f6); }
.placeholder-factory-4 { background: linear-gradient(135deg, #1e3a8a, #2563b0); }
.placeholder-factory-5 { background: linear-gradient(135deg, #1d4ed8, #3b82f6); }
.placeholder-factory-6 { background: linear-gradient(135deg, #1e40af, #2563b0); }

.placeholder-factory {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
}

.placeholder-factory .big-icon {
  font-size: 40px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-fadeup {
  animation: fadeInUp 0.7s ease-out both;
}

.float {
  animation: float 3s ease-in-out infinite;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-inner { 
    grid-template-columns: 1fr; 
    text-align: center;
    gap: 20px;
  }
  .hero-content {
    padding-left: 0;
    order: 2;
  }
  .hero-brand { font-size: 32px; }
  .hero-script { font-size: 40px; }
  .hero-headline { font-size: 22px; }
  .hero-image { 
    display: flex; 
    order: 1;
  }
  .hero-image img {
    border-radius: 15px;
  }
  .usp-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-spa-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card-img { height: 400px; }
  .product-spa-card-img { height: 400px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .company-header { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: 1fr; }
  .header-avatars { display: none; }
  .savings-container {
    gap: 20px;
    padding: 0 10px;
  }
}

@media (max-width: 600px) {
  .hero-brand { font-size: 28px; }
  .hero-script { font-size: 32px; }
  .hero-headline { font-size: 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .products-spa-grid { grid-template-columns: 1fr; }
  .product-card-img { height: 400px; }
  .product-spa-card-img { height: 400px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .savings-number { font-size: 60px; }
  .section-title { font-size: 24px; }
  .header-actions .btn-outline { display: none; }
  .floating-sidebar { display: none; }
  .savings-container {
    flex-direction: row; /* Keep it horizontal if possible, or stack if too small */
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    min-height: auto;
  }
  .savings-text, .savings-chi-phi { font-size: 26px; }
  .savings-number { font-size: 60px; }
  .savings-percent { font-size: 30px; }
}

/* =============================================
   SCROLL ANIMATION (JS-triggered)
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
