/* ================================================================
   AQUAASHIELDRO THEME - STATIC PAGES (EURO FORCE RO)
================================================================ */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 85px 0 75px;
  background:
    radial-gradient(circle at 80% 30%, rgba(9, 193, 235, .20), transparent 35%),
    linear-gradient(135deg, #020a12 0%, #0a263a 100%);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.page-hero .as-eyebrow {
  color: #1acbff;
}

.page-hero h1 {
  max-width: 850px;
  margin: 15px 0;
  color: #ffffff;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -2px;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

/* Contact Cards in Aquaashieldro style */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  margin-top: 10px;
}

.contact-box {
  background: #ffffff;
  border: 1px solid var(--as-border);
  border-radius: 24px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 35px rgba(20, 50, 80, .05);
  transition: transform .3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(20, 50, 80, .1);
}

.contact-box h3 {
  color: var(--as-navy);
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-box p {
  color: var(--as-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 12px;
}

.contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-btns .as-btn {
  flex: 1;
  min-width: 140px;
}

.badge-iso {
  display: inline-block;
  background: #e8faff;
  color: var(--as-blue-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #bcebf6;
  margin-bottom: 14px;
}

.contact-address {
  background: #f7fbfc;
  border: 1px solid #e1edf2;
  border-radius: 16px;
  padding: 18px;
  margin: 14px 0;
}

.contact-address p {
  margin: 0;
  color: var(--as-text);
  font-size: 14px;
  line-height: 1.65;
}

.contact-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.contact-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--as-border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

/* Service simple-card in Aquaashieldro style */
.simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.simple-card {
  padding: 32px;
  border: 1px solid var(--as-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(20, 50, 80, .05);
  transition: transform .3s ease;
}

.simple-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(8, 188, 232, .12);
  border-color: var(--as-blue);
}

.simple-card h3 {
  color: var(--as-navy);
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 12px;
}

.simple-card p {
  color: var(--as-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Gallery page grid */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-page-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--as-border);
  background: #f7fbfd;
  box-shadow: 0 10px 30px rgba(20, 50, 80, .06);
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.gallery-page-item:hover img {
  transform: scale(1.08);
}

.gallery-page-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(180deg, transparent, rgba(7, 21, 34, .85));
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .page-hero { padding: 60px 0; }
  .page-hero h1 { font-size: 38px; }
  .contact-grid, .simple-grid, .contact-media { grid-template-columns: 1fr; }
}
