/* ==========================================================================
   Our Astrology Services — section styles
   Namespace: astsrv-*
   Fonts: Cormorant Garamond (display) / Manrope (body + UI)
   ========================================================================== */

.astsrv-shell {
  --astsrv-bg: #ffffff;
  --astsrv-card: #ffffff;
  --astsrv-heading: #222222;
  --astsrv-copy: #666666;
  --astsrv-accent: #ff7a00;
  --astsrv-accent-soft: #ffb15c;
  --astsrv-ink-deep: #14132b;
  --astsrv-hairline: #ececec;
  --astsrv-shadow-rest: 0 1px 2px rgba(20, 19, 43, 0.04), 0 10px 24px rgba(20, 19, 43, 0.05);
  --astsrv-shadow-hover: 0 18px 38px rgba(255, 122, 0, 0.14), 0 6px 16px rgba(20, 19, 43, 0.08);
  --astsrv-ease: cubic-bezier(0.22, 1, 0.36, 1);

  background: #0a1120;
  padding: clamp(64px, 9vw, 90px) 24px;
  overflow: hidden;
}

.astsrv-shell,
.astsrv-shell * {
  box-sizing: border-box;
}

.astsrv-container {
  max-width: 1440px; /* was 1280px */
  margin: 0 auto;
}

/* ---------------------------------- Header ---------------------------------- */

.astsrv-head {
  max-width: 620px;
  margin: 0 auto clamp(48px, 6vw, 84px);
  text-align: center;
}

.astsrv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.astsrv-ring {
  display: inline-flex;
  color: var(--astsrv-accent);
  animation: astsrv-spin 22s linear infinite;
}

.astsrv-label {
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--astsrv-accent);
}

.astsrv-heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--astsrv-heading);
  margin: 0 0 18px;
}

.astsrv-heading em {
  font-style: italic;
  font-weight: 500;
  color: var(--astsrv-accent);
}

.astsrv-copy {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
}

/* ---------------------------------- Grid ---------------------------------- */

.astsrv-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* was repeat(4, 1fr) — 3 cards per row = wider cards */
  gap: 32px 28px;
}

/* ---------------------------------- Card ---------------------------------- */

.astsrv-card {
  border-radius: 20px;
  background: var(--astsrv-card);
  box-shadow: var(--astsrv-shadow-rest);
  border: 1px solid transparent;
  transition: transform 0.45s var(--astsrv-ease), box-shadow 0.45s var(--astsrv-ease), border-color 0.45s var(--astsrv-ease);
  will-change: transform;
}

.astsrv-card:hover,
.astsrv-card:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--astsrv-shadow-hover);
  border-color: rgba(255, 122, 0, 0.28);
}

.astsrv-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  outline-offset: 4px;
}

.astsrv-media {
  position: relative;
  margin: 12px 12px 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f4f4f4;
}

.astsrv-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 19, 43, 0) 55%, rgba(20, 19, 43, 0.32) 100%);
  opacity: 0;
  transition: opacity 0.45s var(--astsrv-ease);
}

.astsrv-card:hover .astsrv-media::after {
  opacity: 1;
}

.astsrv-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.7s var(--astsrv-ease);
}

.astsrv-card:hover .astsrv-image {
  transform: scale(1.08);
}

.astsrv-body {
  padding: 22px 22px 26px;
}

.astsrv-title {
  position: relative;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: var(--astsrv-heading);
  margin: 0 0 10px;
  padding-bottom: 8px;
}

.astsrv-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 30px;
  background: linear-gradient(90deg, var(--astsrv-accent), var(--astsrv-accent-soft));
  transition: width 0.4s var(--astsrv-ease);
}

.astsrv-card:hover .astsrv-title::after {
  width: 100%;
}

.astsrv-desc {
  font-family: "Manrope", sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--astsrv-copy);
  margin: 0 0 18px;
  min-height: 46px;
}

.astsrv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--astsrv-accent);
}

.astsrv-btn-arrow {
  display: inline-block;
  transition: transform 0.35s var(--astsrv-ease);
}

.astsrv-card:hover .astsrv-btn-arrow {
  transform: translateX(5px);
}

/* ---------------------------------- Reveal-on-scroll ---------------------------------- */

.astsrv-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--astsrv-ease), transform 0.7s var(--astsrv-ease);
}

.astsrv-reveal.astsrv-in-view {
  opacity: 1;
  transform: translateY(0);
}

.astsrv-grid .astsrv-reveal {
  transition-delay: var(--astsrv-delay, 0ms);
}

@keyframes astsrv-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---------------------------------- Responsive ---------------------------------- */

@media (max-width: 1180px) {
  .astsrv-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 22px;
  }
}

/* Tablet */
@media (max-width: 880px) {
  .astsrv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 20px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .astsrv-shell {
    padding: 56px 18px;
  }

  .astsrv-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .astsrv-card:hover {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .astsrv-ring {
    animation: none;
  }

  .astsrv-reveal,
  .astsrv-card,
  .astsrv-image,
  .astsrv-title::after,
  .astsrv-btn-arrow {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
        @import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Manrope:wght@400;500;600;700;800&display=swap');

        /* ---------- Design tokens ---------- */
        .gylb-wrapper {
            --navy-950: #0B1220;
            --navy-900: #10192B;
            --navy-800: #172438;
            --navy-700: #202F49;
            --white: #FFFFFF;
            --ink-on-dark: #ECEEF3;
            --ink-on-dark-soft: #98A2B8;
            --orange: #e28d3f;
            --orange-deep: #E85D00;
            --gold: #E8B04B;
            --line-dark: rgba(255, 255, 255, .08);
            --shadow: 0 26px 54px -26px rgba(0, 0, 0, .55);
            --shadow-soft: 0 12px 30px -16px rgba(0, 0, 0, .4);
            --radius: 20px;
            --radius-sm: 12px;
            --font-display: 'Fraunces', Georgia, serif;
            --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

            background: var(--navy-950);
            color: var(--ink-on-dark);
            font-family: var(--font-body);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .gylb-wrapper *,
        .gylb-wrapper *::before,
        .gylb-wrapper *::after {
            box-sizing: border-box;
        }

        .gylb-wrapper img,
        .gylb-wrapper svg {
            display: block;
            max-width: 100%;
        }

        .gylb-wrapper a {
            text-decoration: none;
            color: inherit;
        }

        .gylb-wrapper ul,
        .gylb-wrapper ol {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .gylb-container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .gylb-eyebrow {
            font-weight: 700;
            font-size: 13px;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--gold);
            margin: 0 0 14px;
        }

        .gylb-heading {
            font-family: var(--font-display);
            font-weight: 500;
            font-size: clamp(26px, 3.2vw, 36px);
            line-height: 1.25;
            margin: 28px 0 18px;
            color: var(--white);
        }

        /* ---------- Reveal ---------- */
        .gylb-reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
        }

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

        @media (prefers-reduced-motion: reduce) {
            .gylb-reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        /* ================================================================
   BREADCRUMB BANNER
   ================================================================ */
.gylb-banner{
    position:relative;
    min-height:340px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}



.gylb-banner__bg{
    position:absolute;
    inset:0;

    background:
        linear-gradient(rgba(7,18,43,.70), rgba(7,18,43,.70)),
        url("https://media.istockphoto.com/id/1815784643/photo/zodiac-signs-inside-of-horoscope-circle-astrology-in-the-sky-with-many-stars-and-moons.jpg?s=612x612&w=0&k=20&c=OZzWDnmz3Zzrky_AGqJignpg0hoqumC753A9ySD7Jhs=") center center/cover no-repeat;

    z-index:1;
}
     
.gylb-banner__inner{
    position:relative;
    z-index:2;   /* IMPORTANT */
    text-align:center;
    color:#fff;
}
       

      

        .gylb-banner__title {
            font-family: var(--font-display);
            font-weight: 500;
            font-style: italic;
            font-size: clamp(34px, 5.2vw, 54px);
            color: var(--white);
            margin: 0 0 16px;
            letter-spacing: -.01em;
        }

        .gylb-breadcrumb ol {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            font-size: 14px;
            font-weight: 600;
        }

        .gylb-breadcrumb li {
            display: flex;
            align-items: center;
            color: var(--orange);
        }

        .gylb-breadcrumb li:not(:last-child)::after {
            content: '\2022';
            margin: 0 10px;
            color: rgba(255, 255, 255, .35);
        }

        .gylb-breadcrumb a {
            color: rgba(255, 255, 255, .7);
            transition: color .2s ease;
        }

        .gylb-breadcrumb a:hover {
            color: var(--orange);
        }

        @media (max-width: 640px) {
            .gylb-banner {
                min-height: 300px;
            }
        }
@media (max-width:768px){

.gylb-banner{
    min-height:280px;
}

.gylb-banner__title{
    font-size:38px;
}

}

@media (max-width:576px){

.gylb-banner{
    min-height:240px;
}

.gylb-banner__title{
    font-size:30px;
}

}
        /* ================================================================
   MAIN PAGE — content + sidebar
   ================================================================ */
        .gylb-page {
            padding: 90px 0 120px;
        }

        .gylb-page__grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 340px;
            gap: 56px;
            align-items: start;
        }

        /* ---------------- Hero image ---------------- */
        .gylb-hero-image {
            position: relative;
            margin-bottom: 8px;
        }
  .gylb-hero-image {
    position: relative;
    margin-bottom: 8px;
    overflow: hidden;
    border-radius: var(--radius);
}

.gylb-hero-image__img {
    width: 100%;
    display: block;
    aspect-ratio: 900 / 480;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform .7s cubic-bezier(.22, .61, .36, 1);
}

.gylb-hero-image:hover .gylb-hero-image__img {
    transform: scale(1.05);
}
        .gylb-hero-image__accent {
            position: absolute;
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background:
                radial-gradient(circle, var(--gold) 1.6px, transparent 1.7px) 0 0/10px 10px;
            background-color: var(--navy-800);
            border: 1px solid rgba(232, 176, 74, .4);
        }

        .gylb-hero-image__accent--tl {
            top: -14px;
            left: -14px;
        }

        .gylb-hero-image__accent--br {
            bottom: -14px;
            right: -14px;
        }

        /* ---------------- Main article typography ---------------- */
        .gylb-main__text {
            font-size: 16px;
            line-height: 1.85;
            color: var(--ink-on-dark-soft);
            margin: 0 0 16px;
            max-width: 85ch;
        }

        .gylb-main__text--closing {
            margin-top: 36px;
            padding-top: 28px;
            border-top: 1px solid var(--line-dark);
            font-style: italic;
            color: var(--ink-on-dark-soft);
        }

        .gylb-block {
            margin-top: 44px;
        }

        .gylb-block__title {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: clamp(21px, 2.4vw, 26px);
            color: var(--white);
            margin: 0 0 12px;
            position: relative;
            padding-left: 18px;
        }

        .gylb-block__title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            bottom: 6px;
            width: 3px;
            border-radius: 2px;
            background: var(--orange);
        }

        .gylb-block__intro {
            font-size: 15px;
            line-height: 1.75;
            color: var(--ink-on-dark-soft);
            margin: 0 0 20px;
            max-width: 85ch;
        }

        .gylb-check-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 24px;
        }

        .gylb-check-list li {
            position: relative;
            padding-left: 24px;
            font-size: 14.5px;
            line-height: 1.6;
            color: var(--ink-on-dark);
        }

        .gylb-check-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 7px;
            width: 9px;
            height: 9px;
            border-radius: 3px;
            background: var(--orange);
            transform: rotate(45deg);
        }

        /* ================================================================
   SIDEBAR
   ================================================================ */
        .gylb-sidebar {
            display: grid;
            gap: 24px;
            position: sticky;
            top: 24px;
        }

        .gylb-sidebar__card {
            background: var(--navy-800);
            border: 1px solid var(--line-dark);
            border-radius: var(--radius);
            padding: 26px;
            box-shadow: var(--shadow-soft);
        }

        .gylb-sidebar__title {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 19px;
            color: var(--white);
            margin: 0 0 18px;
            padding-bottom: 14px;
            position: relative;
        }

        .gylb-sidebar__title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 46px;
            height: 2px;
            background: var(--orange);
        }

        .gylb-service-list {
            display: grid;
            gap: 10px;
        }

        .gylb-service-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            background: var(--orange);
            color: #fff;
            font-weight: 700;
            font-size: 13.5px;
            padding: 13px 16px;
            border-radius: 10px;
            transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
        }

        .gylb-service-btn i {
            font-style: normal;
            width: 14px;
            height: 14px;
            flex: none;
            position: relative;
            opacity: 0;
            transform: translateX(-6px);
            transition: opacity .25s ease, transform .25s ease;
        }

        .gylb-service-btn i::before {
            content: '\2192';
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gylb-service-btn:hover {
            background: var(--orange-deep);
            transform: translateX(4px);
            box-shadow: 0 10px 22px -10px rgba(255, 122, 0, .55);
        }

        .gylb-service-btn:hover i {
            opacity: 1;
            transform: translateX(0);
        }

        .gylb-sidebar__card--consult {
            border-color: rgba(255, 122, 0, .25);
        }

        .gylb-consult-list {
            display: grid;
            gap: 12px;
        }

        .gylb-consult-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--orange);
            color: #fff;
            border-radius: 12px;
            padding: 14px 16px;
            font-weight: 700;
            font-size: 14px;
            transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
        }

        .gylb-consult-btn__icon {
            flex: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .18);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gylb-consult-btn__icon svg {
            width: 15px;
            height: 15px;
            fill: #fff;
        }

        .gylb-consult-btn__label {
            flex: 1;
        }

        .gylb-consult-btn__arrow {
            transition: transform .25s ease;
        }

        .gylb-consult-btn:hover {
            background: var(--orange-deep);
            transform: translateY(-3px);
            box-shadow: 0 14px 28px -12px rgba(255, 122, 0, .55);
        }

        .gylb-consult-btn:hover .gylb-consult-btn__arrow {
            transform: translateX(4px);
        }

        .gylb-sidebar__note {
            margin: 16px 0 0;
            font-size: 12.5px;
            color: var(--ink-on-dark-soft);
            text-align: center;
        }

        /* ================================================================
   RESPONSIVE
   ================================================================ */
        @media (max-width: 1024px) {
            .gylb-page__grid {
                grid-template-columns: 1fr;
            }

            .gylb-sidebar {
                position: static;
            }

            .gylb-service-list {
                grid-template-columns: repeat(2, 1fr);
            }

            .gylb-consult-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .gylb-page {
                padding: 56px 0 72px;
            }

            .gylb-check-list {
                grid-template-columns: 1fr;
            }

            .gylb-service-list {
                grid-template-columns: 1fr;
            }

            .gylb-consult-list {
                grid-template-columns: 1fr;
            }

            .gylb-hero-image__accent {
                width: 24px;
                height: 24px;
            }
        }












        