/* ================================
   GLOBAL FEEL
================================ */
body {
  background: #ffffff;
  color: #2C3E50;
  font-smoothing: antialiased;
}

/* Subtle brand glow in background */
body::before {
  content: "";
  position: fixed;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31,167,182,0.06), transparent 60%);
  pointer-events: none;
  z-index: -1;
}


/* ================================
   CARD SYSTEM (Services, Trust, Posts)
================================ */
.aasm-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(14, 58, 78, 0.12);
  box-shadow: 0 6px 22px rgba(14, 58, 78, 0.06);
  position: relative;
  transition: all .25s ease;
}

/* Top accent line from logo gradient */
.aasm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #0E3A4E, #1FA7B6);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

/* Elegant hover effect */
.aasm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(14, 58, 78, 0.12);
}


/* ================================
   HERO SECTION
================================ */
.aasm-hero {
  background: linear-gradient(180deg, #F4F7F9 0%, #FFFFFF 100%);
  border: 1px solid rgba(14, 58, 78, 0.08);
  box-shadow: 0 12px 40px rgba(14, 58, 78, 0.06);
  border-radius: 24px;
}


/* ================================
   BUTTONS
================================ */
.wp-block-button.is-style-primary .wp-block-button__link {
  background: linear-gradient(135deg, #1FA7B6, #0E7E8B);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(31,167,182,0.30);
  transition: all .2s ease;
}

.wp-block-button.is-style-primary .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31,167,182,0.4);
}


/* ================================
   DIVIDERS
================================ */
.aasm-divider {
  height: 2px;
  background: linear-gradient(90deg, #0E3A4E, #1FA7B6);
  opacity: .6;
  border: none;
}


/* ================================
   HEADER POLISH
================================ */
header {
  border-bottom: 1px solid rgba(14, 58, 78, 0.08);
}

header a:hover {
  text-decoration: none;
  opacity: 0.9;
}


/* ================================
   TYPOGRAPHY POLISH
================================ */
h1, h2, h3 {
  letter-spacing: -0.3px;
}

h1 {
  color: #0E3A4E;
}

h2 {
  color: #143E53;
}

h3 {
  color: #1FA7B6;
}


/* ================================
   LINKS
================================ */
a {
  color: #1FA7B6;
  transition: color .2s ease;
}

a:hover {
  color: #0E3A4E;
}


/* ================================
   FOOTER
================================ */
footer {
  border-top: 1px solid rgba(14, 58, 78, 0.08);
}


/* ================================
   RESPONSIVE TOUCH
================================ */
@media (max-width: 768px) {
  .aasm-card {
    margin-bottom: 20px;
  }
}
