.caps-closure {
  padding: 140px 20px;
  background: radial-gradient(
    circle at top right,
    rgba(212, 148, 58, 0.15),
    var(--accent-bg) 60%
  );
}

.caps-wrap {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* LEFT */
.caps-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  border: 1px solid var(--gold);
  margin-bottom: 18px;
}

.caps-left h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
}

.caps-left h2 span {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(212, 148, 58, 0.35);
}

.caps-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 520px;
  margin-bottom: 34px;
}

.caps-link {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  background: var(--maroon);
  color: #fff;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.caps-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(139, 26, 74, 0.35);
}

/* IMAGE */
.caps-image-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}

.caps-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
}

/* FLOATING TAGS */
.caps-float {
  position: absolute;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.tag-1 {
  top: 18%;
  left: 8%;
}
.tag-2 {
  top: 45%;
  right: 10%;
}
.tag-3 {
  bottom: 18%;
  left: 18%;
}
/* warehouse start */
.warehouse-section {
  padding: 140px 20px;
  background: radial-gradient(
    circle at top left,
    rgba(139, 26, 74, 0.15),
    var(--accent-bg) 55%
  );
}

.warehouse-wrap {
  max-width: 1400px;
  margin: auto;
}

/* HEADER */
.warehouse-head {
  text-align: center;
  max-width: 720px;
  margin: auto;
  margin-bottom: 90px;
}

.warehouse-pill {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 12px;
  margin-bottom: 18px;
}

.warehouse-head h2 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
}

.warehouse-head h2 span {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(212, 148, 58, 0.35);
}

.warehouse-head p {
  margin-top: 16px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.warehouse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* CARD */
.warehouse-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 32px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.warehouse-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(139, 26, 74, 0.2);
}

/* MEDIA */
.warehouse-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 26px;
}

.warehouse-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.warehouse-media i {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 26px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* TEXT */
.warehouse-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.warehouse-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .warehouse-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .warehouse-grid {
    grid-template-columns: 1fr;
  }

  .warehouse-head h2 {
    font-size: 40px;
  }
}

/* warehouse end */
/* energy */
.compact-section {
  padding: 120px 20px;
  background: var(--accent-bg);
}

.compact-wrap {
  max-width: 1200px;
  margin: auto;
}

.compact-head {
  max-width: 620px;
  margin-bottom: 80px;
}

.compact-head h2 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
}

.compact-head h2 span {
  color: var(--gold);
  text-shadow: 0 0 14px rgba(212, 148, 58, 0.4);
}

.compact-head p {
  margin-top: 16px;
  color: #555;
  line-height: 1.6;
}

/* ROW */
.compact-row {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 70px;
}

.compact-row.reverse {
  grid-template-columns: auto 1fr auto 1fr;
}

/* ICON */
.compact-icon {
  font-size: 34px;
  color: var(--gold);
}

/* TEXT */
.compact-text h4 {
  margin-bottom: 6px;
  font-size: 18px;
}

.compact-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* IMAGE */
.compact-img img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
}

/* CTA */
.compact-cta {
  margin-top: 40px;
}

.compact-cta a {
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  position: relative;
}

.compact-cta a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}

.compact-cta a:hover::after {
  transform: scaleX(1);
}

/* ================= TABLET ================= */
@media (max-width: 900px) {
  .compact-row { grid-template-columns: 1fr; gap: 18px; }
  .compact-img img { width: 100%; height: 200px; }
  .caps-wrap { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .caps-image { height: 420px; }
  .caps-left h2 { font-size: 42px; }
}

/* ================= PHONE ================= */
@media (max-width: 768px) {
  .caps-closure { padding: 80px 16px; }
  .caps-left h2 { font-size: 32px; }
  .caps-left p { font-size: 14px; }
  .caps-image { height: 300px; }
  .warehouse-section { padding: 80px 16px; }
  .warehouse-head h2 { font-size: 36px; }
  .compact-section { padding: 80px 16px; }
  .compact-head h2 { font-size: 32px; }
}

/* ================= SMALL PHONE ================= */
@media (max-width: 480px) {
  .caps-left h2 { font-size: 26px; }
  .warehouse-head h2 { font-size: 28px; }
  .compact-head h2 { font-size: 26px; }
}
