@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --green-950: #022c22;
    --green-900: #eab308;
    --teal-950: #042f2e;
    --gold-500: #eab308;
    --gold-400: #facc15;
    --gold-300: #fde047;
    --gold-100: #fef9c3;
    --dark-bg: #0a0a0a;
    --primary-text-color: #1a110d;
    --maroon-900: #520f0d;
    --maroon-700: #8b1d18;
    --cream-50: #fffaf0;
    --cream-100: #fff2cf;
    --ink-900: #19110d;
    --card-black: #111111;
    --card-border: #1a1a1a;
    --header-offset: 90px;
  }

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

  p {
    color: #bf0403 !important;
  }

  body {
    min-height: 100vh;
    color: var(--primary-text-color);
    padding-top: var(--header-offset);
    font-family: 'Inter', sans-serif;
    background:
      radial-gradient(circle at top left, rgba(250, 204, 21, 0.24), transparent 34rem),
      linear-gradient(180deg, #fff8e7 0%, #f8dfaa 52%, #f8e7bd 100%);
    overflow-x: hidden;
  }

  .sub-page {
    overflow-x: hidden;
  }

  .navbar {
    background: #ff7900;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(20px) saturate(160%);
    box-shadow: 0 10px 28px rgba(82, 15, 13, 0.16);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    margin-top: 0 !important;
    z-index: 1050;
  }

  .site-shell {
    width: 100%;
    overflow-x: hidden;
  }

  #header-placeholder {
    line-height: 0;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    line-height: 1;
    flex: 0 1 auto;
    margin-right: auto;
  }

  .brand-logo {
    width: 120px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
    animation: logoEntrance 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .navbar-brand:hover .brand-logo {
    transform: scale(1.05);
  }

  .brand-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem !important;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    line-height: 1;
  }

  .brand-subtitle {
    font-family: 'Cormorant Garamond', serif;
    color: #fff6e8;
    font-size: 1.05rem !important;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-top: 3px;
    line-height: 1.2;
  }

  .nav-link {
    color: #fff !important;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    padding: 0.5rem 0.8rem !important;
    display: flex;
    align-items: center;
    height: auto;
    line-height: 1.2;
  }

  @media (min-width: 992px) {
    .navbar-nav {
      align-items: center;
      gap: 0.25rem;
    }

    .navbar-collapse {
      display: flex;
      justify-content: flex-end;
    }
    
    .navbar-nav .nav-link {
      padding: 0.5rem 1rem !important;
    }
  }

  .navbar-nav .nav-link:hover, 
  .navbar-nav .nav-link.active {
    color: #fff8d8 !important;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.34);
  }

  .navbar-nav {
    align-items: center;
  }

  .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0.8rem;
    background-color: #fff;
    transition: width 0.3s ease;
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: calc(100% - 1.6rem);
  }

  .navbar-toggler {
    color: #fff;
    border: none !important;
    padding: 0;
    margin-left: auto;
    height: 40px; 
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }

  .dropdown-menu {
    background: #ff7900;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 10px !important;
  }

  .dropdown-item {
    color: #fff;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateX(5px);
  }

  .hero-section-custom {
    padding: 1.4rem 0 0;
    min-height: 36vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    isolation: isolate;
  }

  .hero-section-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(35, 8, 6, 0.7) 0%, rgba(70, 14, 10, 0.42) 44%, rgba(82, 15, 13, 0.12) 100%),
      radial-gradient(circle at 72% 45%, rgba(250, 204, 21, 0.16), transparent 24rem);
    z-index: -1;
  }

  .hero-section-custom .container {
    position: relative;
    z-index: 2;
  }

  .hero-woman-img {
    width: 100%;
    max-width: 460px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: womanEntrance 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .eyebrow {
    color: var(--gold-300);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #bf0403;
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.36);
  }

  .home-page .hero-title {
    color: #ffffff;
  }

  .lead-copy {
    color: var(--primary-text-color);
    line-height: 1.6;
    font-size: 1rem;
  }

  .hero-section-custom .lead-copy {
    color: #ffdf94 !important;
    max-width: 700px;
    font-size: 1.05rem;
    line-height: 1.75;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .btn-gold {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    border: none;
    color: var(--ink-900);
    font-weight: 700;
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .btn-gold:hover {
    background: linear-gradient(135deg, #fff176, var(--gold-400));
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(191, 4, 3, 0.6);
    color: #000;
  }

  .btn-outline-gold {
    border: 2px solid var(--gold-500);
    background: transparent;
    color: var(--primary-text-color);
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
  }

  .hero-section-custom .btn-outline-gold {
    color: #fffaf0;
    backdrop-filter: blur(8px);
  }

  .btn-outline-gold:hover {
    background: rgba(234, 179, 8, 0.1);
    border-color: var(--gold-400);
  }

  .btn-primary-red {
    background-color: #bf0403 !important;
    border: none;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 2rem;
    padding: 0.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .btn-primary-red:hover {
    background: linear-gradient(135deg, #d32f2f, #bf0403);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(191, 4, 3, 0.4);
    color: #fff;
  }

  .quick-service-ribbon {
    background: #ff7900;
    box-shadow: 0 10px 24px rgba(82, 15, 13, 0.14);
    position: relative;
    z-index: 3;
  }

  .quick-ribbon-track {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 68px;
  }

  .quick-service-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.22);
    transition: background 0.25s ease, color 0.25s ease;
  }

  .quick-service-pill:last-child {
    border-inline-end: 1px solid rgba(255, 255, 255, 0.22);
  }

  .quick-service-pill:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff8d8;
  }

  .quick-service-pill img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    box-shadow: 0 6px 14px rgba(82, 15, 13, 0.16);
  }

  .services-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.32), rgba(255, 242, 207, 0.44));
  }

  .zodiac-overview {
    padding: 3rem 0 3.5rem;
    background:
      linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 248, 236, 0.94)),
      url('../images/Backgroundimg.png') center/cover no-repeat;
    border-bottom: 1px solid rgba(255, 121, 0, 0.16);
  }

  .zodiac-layout {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(240px, 360px) minmax(220px, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3.5rem);
  }

  .zodiac-column {
    display: grid;
    gap: 1rem;
  }

  .zodiac-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 64px;
    position: relative;
  }

  .zodiac-column-left .zodiac-item::after,
  .zodiac-column-right .zodiac-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: clamp(42px, 6vw, 92px);
    border-top: 1px dashed rgba(40, 40, 40, 0.42);
  }

  .zodiac-column-left .zodiac-item::after {
    right: calc(clamp(42px, 6vw, 92px) * -1);
  }

  .zodiac-column-right .zodiac-item::before {
    left: calc(clamp(42px, 6vw, 92px) * -1);
  }

  .zodiac-column-right .zodiac-item {
    justify-content: flex-end;
    text-align: left;
  }

  .zodiac-symbol {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 50%;
    background: #ff7900;
    border: 5px solid #f0f0f0;
    box-shadow: 0 6px 18px rgba(82, 15, 13, 0.16);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1rem;
  }

  .zodiac-item strong {
    display: block;
    color: #212121;
    font-size: 1rem;
    line-height: 1.2;
  }

  .zodiac-item small {
    display: block;
    color: #6d6d6d;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .zodiac-wheel-wrap {
    width: min(100%, 340px);
    aspect-ratio: 1;
    margin-inline: auto;
    position: relative;
    display: grid;
    place-items: center;
  }

  .zodiac-wheel {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 5px solid #19110d;
    background: conic-gradient(
      #c99629 0deg 30deg,
      #8f6b33 30deg 60deg,
      #b84b48 60deg 90deg,
      #7d3848 90deg 120deg,
      #654061 120deg 150deg,
      #42688a 150deg 180deg,
      #6aa8ad 180deg 210deg,
      #507d63 210deg 240deg,
      #a98428 240deg 270deg,
      #bf9f36 270deg 300deg,
      #71a7a5 300deg 330deg,
      #d1b24a 330deg 360deg
    );
    box-shadow: 0 20px 45px rgba(82, 15, 13, 0.18);
    animation: cosmicRotate 44s linear infinite;
  }

  .zodiac-wheel::after {
    content: '';
    position: absolute;
    inset: 26%;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0 20%, #d7edf2 22% 34%, #4a3038 38% 100%);
    border: 6px solid rgba(25, 17, 13, 0.72);
  }

  .zodiac-wheel span {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    transform-origin: 0 0;
    z-index: 2;
  }

  .zodiac-wheel span:nth-child(1) { transform: rotate(15deg) translate(115px) rotate(-15deg); }
  .zodiac-wheel span:nth-child(2) { transform: rotate(45deg) translate(115px) rotate(-45deg); }
  .zodiac-wheel span:nth-child(3) { transform: rotate(75deg) translate(115px) rotate(-75deg); }
  .zodiac-wheel span:nth-child(4) { transform: rotate(105deg) translate(115px) rotate(-105deg); }
  .zodiac-wheel span:nth-child(5) { transform: rotate(135deg) translate(115px) rotate(-135deg); }
  .zodiac-wheel span:nth-child(6) { transform: rotate(165deg) translate(115px) rotate(-165deg); }
  .zodiac-wheel span:nth-child(7) { transform: rotate(195deg) translate(115px) rotate(-195deg); }
  .zodiac-wheel span:nth-child(8) { transform: rotate(225deg) translate(115px) rotate(-225deg); }
  .zodiac-wheel span:nth-child(9) { transform: rotate(255deg) translate(115px) rotate(-255deg); }
  .zodiac-wheel span:nth-child(10) { transform: rotate(285deg) translate(115px) rotate(-285deg); }
  .zodiac-wheel span:nth-child(11) { transform: rotate(315deg) translate(115px) rotate(-315deg); }
  .zodiac-wheel span:nth-child(12) { transform: rotate(345deg) translate(115px) rotate(-345deg); }

  .zodiac-core {
    width: 36%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 0 22px rgba(82, 15, 13, 0.14);
    display: grid;
    place-items: center;
    position: relative;
    z-index: 3;
  }

  .zodiac-core img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    border-radius: 50%;
  }

  .home-about-overview {
    background: #fff;
  }

  .home-about-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }

  .home-about-media img {
    width: 100%;
    min-height: 330px;
    max-height: 420px;
    object-fit: cover;
    background-color: white;
    display: block;
    box-shadow: 0 18px 42px rgba(82, 15, 13, 0.12);
  }

  .home-about-content h3 {
    /* Changed color from #19110d to #bf0403 as per request */
    color: #bf0403;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
  }

  .home-about-content p {
    color: #6a5a50 !important;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .section-header {
    margin-bottom: 3.5rem;
  }

  .glass-card, .cta-panel, .why-card {
    backdrop-filter: blur(15px);
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .glass-card:hover, .lift-card:hover, .why-card:hover {
    border-color: var(--gold-500) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(234, 179, 8, 0.1);
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--maroon-700);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon-700);
    font-size: 1.5rem;
  }

  .section-badge {
    color: var(--primary-text-color);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
  }

  .section-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #bf0403;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
  }

  .service-card-black {
    border: 1px solid rgba(234, 179, 8, 0.42);
    background: #0a0a0a !important;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 18px 40px rgba(82, 15, 13, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-card-black::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 200%;
    background: linear-gradient(var(--gold-400), #bf0403);
    animation: rotate-glow 4s linear infinite;
    z-index: 0;
  }

  .service-card-black::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(145deg, #b45309 0%, #f59e0b 100%);
    border-radius: 0.85rem;
    z-index: 1;
  }

  .service-card-black > * {
    position: relative;
    z-index: 2;
  }

  .service-card-black:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(82, 15, 13, 0.14), inset 0 0 22px rgba(250, 204, 21, 0.1);
  }

  .service-icon-black {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.2rem auto;
    background: rgba(255, 250, 240, 0.82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(159, 23, 20, 0.18);
    padding: 5px;
    overflow: hidden;
  }

  .service-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
  }

  .service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #bf0403;
    margin-bottom: 1rem;
  }

.developer-link a {
  color: var(--gold-500);
  text-decoration: none;
  transition: color 0.3s ease;
}

.developer-link a:hover {
  color: var(--gold-300) !important;
}

  .service-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 1.2rem;
  }

  .service-learn-more {
    color: var(--gold-300);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
  }

  .service-learn-more:hover {
    color: var(--gold-100);
    letter-spacing: 0.5px;
  }

  .btn-view-all {
    background: transparent;
    border: 2px solid var(--gold-500);
    color: var(--primary-text-color);
    padding: 0.8rem 2.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
  }

  .btn-view-all:hover {
    background: rgba(234, 179, 8, 0.1);
    color: var(--primary-text-color);
    border-color: var(--gold-400);
  }

  .why-card {
    background: linear-gradient(135deg, #fffdf5 0%, #fff1cc 100%) !important;
    border: 1px solid rgba(234, 179, 8, 0.4) !important;
    border-top: 5px solid #bf0403 !important;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 14px 32px rgba(82, 15, 13, 0.08) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .why-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 40px rgba(191, 4, 3, 0.12) !important;
    border-color: #bf0403 !important;
  }

  .cta-panel {
    background: linear-gradient(145deg, #b45309 0%, #f59e0b 100%) !important;
    border: 1px solid rgba(234, 179, 8, 0.42) !important;
    box-shadow: 0 18px 40px rgba(82, 15, 13, 0.08) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .cta-panel:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 60px rgba(82, 15, 13, 0.16), 
                0 0 42px rgba(234, 179, 8, 0.2),
                inset 0 0 25px rgba(234, 179, 8, 0.15) !important;
    border-color: var(--gold-300) !important;
  }

  /* Video Container */
  .video-container {
    background: #000;
    border: 2px solid var(--gold-500);
    transition: transform 0.4s ease;
  }

  .video-container:hover {
    transform: scale(1.01);
  }

  .why-title {
    color: var(--primary-text-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .why-desc {
    color: var(--primary-text-color);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .cta-panel {
    border-radius: 1.25rem;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #bf0403 !important;
  }

  .cta-panel h2, 
  .cta-panel h3 {
    color: var(--gold-400) !important;
  }

  .cta-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .footer-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.35);
    color: var(--gold-400);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer-social-icon:hover {
    background: var(--gold-500);
    color: var(--ink-900);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(234, 179, 8, 0.35);
  }

  .site-footer {
    position: relative;
    overflow: hidden;
    background: transparent;
    border-top: none;
    backdrop-filter: blur(10px);
    margin-top: 0;
    color: #ffffff !important;
  }

  .footer-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .footer-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Video has full opacity (no limit) to make it look clear as requested */
  }

  .footer-video-overlay {
    position: absolute;
    inset: 0;
    /* Lighten the dark gradient overlay to make the background video very clear and bright */
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, rgba(5, 5, 5, 0.5) 100%);
    z-index: 2;
  }

  .site-footer .container {
    position: relative;
    z-index: 3;
  }

  /* Text highlighting (drop shadows) to maintain great readability on the bright video background */
  .site-footer p,
  .site-footer h3,
  .site-footer h4,
  .site-footer li,
  .site-footer a,
  .site-footer span {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.95) !important;
  }

.footer-heading {
  color: var(--gold-400);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-500);
}

  .home-page main > section:last-child {
    padding-bottom: 0;
  }

  .footer-link {
    color: #ffffff !important; /* Pure white links */
    font-weight: 600; /* Bold font to highlight links */
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-link:hover {
    color: var(--gold-400) !important;
  }

  .footer-copyright-text {
    color: var(--gold-400) !important;
  }

  .developer-link-text {
    color: #ffffff !important;
    transition: color 0.3s ease;
  }

  .developer-link-text:hover {
    color: var(--gold-300) !important;
    text-decoration: underline !important;
  }

.footer-links-list {
  list-style: none;
  padding: 0;
}

  .gold-text {
    color: var(--gold-400);
  }

  .muted-gold {
    color: var(--primary-text-color);
  }

  .section-pad-sm {
    padding: 3rem 0;
  }

  .page-title, .section-title {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
    color: #bf0403;
  }

@keyframes cosmicRotate {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

  .feature-dot {
    width: 8px;
    height: 8px;
    background: var(--maroon-700);
    border-radius: 50%;
  }

  .step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(234, 179, 8, 0.2);
    line-height: 1;
  }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-text-color);
  }

  .quote-icon {
    font-size: 2rem;
    color: var(--maroon-700);
    opacity: 0.5;
  }

  .stars {
    color: var(--maroon-700);
    letter-spacing: 2px;
  }

  .blog-image {
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold-500);
    border-bottom: 1px solid rgba(234, 179, 8, 0.2);
  }

  .category-btn {
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: var(--primary-text-color);
    border-radius: 2rem;
  }

  .category-btn.active, .category-btn:hover {
    background: var(--gold-500);
    color: var(--primary-text-color);
  }

  @media (max-width: 992px) {
    .hero-section-custom {
      padding: 3rem 0 0;
      min-height: auto;
      text-align: center;
    }
    
    .section-title-large,
    .page-title,
    .section-title {
      font-size: 2rem;
    }

    .hero-woman-img {
      width: min(95%, 500px);
      margin: 0 auto;
      display: block;
      animation: womanEntranceMobile 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .navbar > .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
    }

    .navbar-brand {
        margin-right: 0 !important;
        gap: 2px !important;
    }

    .brand-logo {
        width: 80px !important;
    }

    .brand-title {
        font-size: 1.2rem !important;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
      font-size: 2.2rem;
    }

    .navbar-collapse {
        background: #ff7900;
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 1rem;
        width: 100%;
        box-shadow: 0 10px 30px rgba(82, 15, 13, 0.18);
        z-index: 1060;
    }

    .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
        gap: 5px;
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 1rem !important;
        width: 100%;
        border-radius: 8px;
    }

    .quick-ribbon-track {
      grid-template-columns: repeat(2, 1fr);
    }

    .quick-service-pill {
      min-height: 64px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .zodiac-layout {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }

    .zodiac-column-left {
      order: 1;
      width: 100%;
    }

    .zodiac-wheel-wrap {
      order: 2;
      width: min(72vw, 320px);
    }

    .zodiac-column-right {
      order: 3;
      width: 100%;
    }

    .zodiac-column {
      grid-template-columns: repeat(2, 1fr);
    }

    .zodiac-column-left .zodiac-item::after,
    .zodiac-column-right .zodiac-item::before {
      display: none;
    }

    .zodiac-column-right .zodiac-item {
      justify-content: flex-start;
    }

    .zodiac-column-right .zodiac-item span:first-child {
      order: 2;
    }

    .zodiac-column-right .zodiac-symbol {
      order: 1;
    }

    .home-about-grid {
      grid-template-columns: 1fr;
    }

    .home-about-media img {
      min-height: 260px;
      max-height: 360px;
    }
  }

@keyframes womanEntrance {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes womanEntranceMobile {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes logoEntrance {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

  @media (max-width: 576px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .hero-title {
      font-size: 1.8rem;
    }

    .hero-section-custom .lead-copy {
      font-size: 0.88rem;
    }
    
    .section-title-large,
    .page-title,
    .section-title {
      font-size: 1.6rem;
    }

    .service-name {
      font-size: 1.1rem;
    }

    .why-title {
      font-size: 1.15rem;
    }
    
    .cta-panel {
      padding: 2rem 1rem;
    }
    
    .cta-title {
      font-size: 1.5rem;
    }

    .brand-logo {
        width: 70px !important;
    }

    .brand-title {
        font-size: 1rem !important;
    }

    .brand-subtitle {
        font-size: 0.9rem !important;
    }

    .service-card-black { padding: 1.5rem; }

    .quick-ribbon-track {
      grid-template-columns: 1fr;
    }

    .quick-service-pill {
      justify-content: flex-start;
      padding: 0.65rem 1rem;
    }

    .zodiac-overview {
      padding: 2.25rem 0;
    }

    .zodiac-column {
      grid-template-columns: 1fr;
      gap: 0.8rem;
    }

    .zodiac-item {
      min-height: 56px;
    }

    .zodiac-symbol {
      width: 50px;
      height: 50px;
      flex-basis: 50px;
      border-width: 4px;
    }

    .zodiac-wheel span:nth-child(n) {
      transform: none;
      display: none;
    }

    .home-about-content h3 {
      font-size: 1.35rem;
    }
  }

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1) rotate(10deg);
  color: #fff !important;
  animation: none;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.scroll-to-top-btn {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 100px;
  right: 32px;
  background-color: var(--gold-500);
  color: var(--ink-900);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
  .scroll-to-top-btn {
    bottom: 85px;
    right: 25px;
  }
}

 .diff-overview-card,
 .diff-detail-container {
    background: linear-gradient(135deg, #fffdf5 0%, #fff1cc 100%) !important;
    border: 1px solid rgba(234, 179, 8, 0.4) !important;
    border-top: 5px solid #bf0403 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

 .diff-overview-card {
    border-radius: 1rem;
}

 .diff-detail-container {
    border-radius: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

 .diff-overview-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(191, 4, 3, 0.12);
    border-color: #bf0403 !important;
}

.diff-item-box {
    background: rgba(191, 4, 3, 0.04) !important;
    border-left: 4px solid #bf0403 !important;
    border-radius: 0 1rem 1rem 0;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

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

/* Sub-page layout */
.sub-page main {
  background: transparent;
}

/* Clean page header — no hero image */
.page-header {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(1.25rem, 2.5vw, 2rem);
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 121, 0, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 121, 0, 0.12);
}

.page-header .eyebrow {
  color: #ff7900;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.page-header .page-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: #bf0403;
  max-width: 820px;
  margin-inline: auto;
}

.page-header .page-header-desc {
  color: #6a5a50 !important;
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Shared sub-page card base */
.sub-page .glass-card {
  background: #ffffff !important;
  border: 1px solid rgba(255, 121, 0, 0.14) !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 18px rgba(82, 15, 13, 0.07) !important;
  backdrop-filter: none;
}

.sub-page .glass-card:hover,
.sub-page .lift-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 32px rgba(255, 121, 0, 0.16) !important;
  border-color: rgba(255, 121, 0, 0.35) !important;
}

/* About page */
.page-story-section {
  background: linear-gradient(180deg, #fff 0%, #fff8ec 100%);
}

.story-intro {
  max-width: 640px;
  color: #6a5a50 !important;
}

.story-visual-card {
  background: linear-gradient(145deg, #fff8ec, #ffffff);
  border: 1px solid rgba(255, 121, 0, 0.16);
  border-radius: 20px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 8px 28px rgba(82, 15, 13, 0.08);
}

.story-visual-img {
  width: 100%;
  max-width: 380px;
  display: block;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 12px 28px rgba(255, 121, 0, 0.22));
}

.story-quote {
  margin: 0;
  padding: 1rem 1.25rem;
  background: rgba(255, 121, 0, 0.08);
  border-left: 4px solid #ff7900;
  border-radius: 0 12px 12px 0;
}

.story-quote i {
  color: #ff7900;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.story-quote p {
  color: #6a5a50 !important;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

.story-content-grid {
  display: grid;
  gap: 1rem;
}

.story-content-grid.vertical-chapters {
  gap: 0;
}

.story-content-grid.vertical-chapters .story-chapter {
  position: relative;
  margin-bottom: 3.5rem;
}

.story-content-grid.vertical-chapters .story-chapter:not(:last-child)::after {
  content: 'I\A I\A I\A I';
  white-space: pre;
  position: absolute;
  bottom: -3.2rem;
  left: calc(1.5rem + 21px);
  transform: translateX(-50%);
  color: #ff7900;
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 0.8;
  opacity: 0.5;
}

.story-chapter {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(255, 121, 0, 0.14);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(82, 15, 13, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-chapter:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 22px rgba(255, 121, 0, 0.12);
}

.story-chapter-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff7900, #ff9a28);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
}

.story-chapter h3 {
  color: #bf0403;
}

.story-chapter p {
  color: #6a5a50 !important;
  line-height: 1.65;
}

.story-timeline {
  background: linear-gradient(160deg, #fff8ec, #ffffff) !important;
  border-top: 4px solid #ff7900 !important;
}

.story-timeline h3 {
  color: #bf0403;
}

.story-timeline-track {
  display: grid;
  gap: 1.25rem;
}

.story-timeline-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.story-timeline-dot {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  background: #ff7900;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 121, 0, 0.16);
}

.story-timeline-step h4 {
  color: #bf0403;
}

.story-timeline-step p {
  color: #6a5a50 !important;
}

.page-about .mission-panel {
  background: linear-gradient(145deg, #fff8ec 0%, #ffffff 100%) !important;
  border-top: 4px solid #ff7900 !important;
}

.page-about .row > [class*="col-"]:nth-child(2) .mission-panel {
  background: linear-gradient(145deg, #fff3e0 0%, #ffffff 100%) !important;
  border-top-color: #e86a00 !important;
}

.page-about .mission-panel .icon-circle {
  background: linear-gradient(135deg, #ff7900, #ff9a28);
  color: #fff;
  border-color: transparent;
}

.page-about .mission-panel .lead-copy {
  color: #6a5a50 !important;
}

.page-about .value-line {
  background: #ffffff !important;
  border-top: 4px solid #ff7900 !important;
}

.page-about .value-line:nth-child(2) {
  background: linear-gradient(160deg, #fff8ec, #fff) !important;
}

.page-about .value-line .icon-circle {
  background: linear-gradient(135deg, #ff7900, #ff9a28);
  color: #fff;
  border-color: transparent;
}

/* Services page */
.service-flow-section {
  padding-top: 1rem;
}

.service-flow-grid > [class*="col-"] {
  display: flex;
}

.page-services .service-line {
  width: 100%;
  text-align: center !important;
  background: #ffffff !important;
  border-top: 4px solid #ff7900 !important;
  transition: all 0.35s ease;
}

.page-services .service-flow-grid > [class*="col-"]:nth-child(2) .service-line {
  background: linear-gradient(160deg, #fff8ec, #fff) !important;
}

.page-services .service-flow-grid > [class*="col-"]:nth-child(3) .service-line {
  background: linear-gradient(160deg, #fff3e0, #fff) !important;
}

.page-services .service-flow-grid > [class*="col-"]:nth-child(4) .service-line {
  background: linear-gradient(160deg, #fff8ec, #fff) !important;
}

.page-services .service-flow-grid > [class*="col-"]:nth-child(5) .service-line {
  background: linear-gradient(160deg, #fff3e0, #fff) !important;
}

.page-services .service-line .icon-circle {
  margin-inline: auto;
  background: linear-gradient(135deg, #ff7900, #ff9a28);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(255, 121, 0, 0.28);
}

.page-services .mission-panel {
  background: linear-gradient(145deg, #fff8ec, #ffffff) !important;
  border-top: 4px solid #ff7900 !important;
}

.page-services .mission-panel + .mission-panel,
.page-services .row > [class*="col-"]:nth-child(2) .mission-panel {
  background: linear-gradient(145deg, #fff3e0, #ffffff) !important;
}

.page-services .faq-line {
  background: #ffffff !important;
  border-left: 4px solid #ff7900 !important;
  border-radius: 12px !important;
}

.page-services .faq-line:hover {
  background: linear-gradient(90deg, rgba(255, 121, 0, 0.06), #fff) !important;
}

.services-astro-accent {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(255, 121, 0, 0.25));
}

.page-services .diff-detail-container {
  background: #ffffff !important;
  border: 1px solid rgba(255, 121, 0, 0.14) !important;
  border-top: 4px solid #ff7900 !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 18px rgba(82, 15, 13, 0.07) !important;
}

.page-services .diff-detail-container .section-title {
  color: #bf0403 !important;
}

.page-services .diff-item-box {
  background: linear-gradient(90deg, rgba(255, 121, 0, 0.06), #fff) !important;
  border-left: 4px solid #ff7900 !important;
  border-radius: 0 12px 12px 0 !important;
}

.page-services .diff-item-box .lead-copy,
.page-services .diff-detail-container h3,
.page-services .diff-detail-container p {
  color: #6a5a50 !important;
}

.page-services .diff-detail-container h3.fw-bold {
  color: #ff7900 !important;
}

.page-services .diff-tagline {
  color: #ff7900 !important;
  font-style: italic;
}

.page-contact .diff-detail-container {
  background: #ffffff !important;
  border: 1px solid rgba(255, 121, 0, 0.14) !important;
  border-top: 4px solid #ff7900 !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 18px rgba(82, 15, 13, 0.07) !important;
}

.page-contact .contact-form-panel {
  background: linear-gradient(145deg, #fff8ec 0%, #ffffff 100%) !important;
  border-top: 4px solid #ff7900 !important;
}

.page-contact .contact-form-panel h2 {
  color: #bf0403;
}

.page-contact .contact-form-panel p,
.page-contact .form-label {
  color: #6a5a50 !important;
}

.page-contact .form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 121, 0, 0.1);
  color: #ff7900;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.page-contact .form-section-title {
  color: #bf0403;
}

.page-contact .form-section-title i {
  color: #ff7900;
  margin-right: 0.35rem;
}

.page-contact .contact-side-panel {
  background: linear-gradient(160deg, #fff3e0 0%, #ffffff 100%) !important;
  border-top: 4px solid #ff7900 !important;
}

.page-contact .contact-side-panel h2 {
  color: #bf0403;
}

.page-contact .contact-side-panel .icon-circle {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ff7900, #ff9a28);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(255, 121, 0, 0.28);
}

.page-contact .contact-side-panel h3 {
  color: #bf0403 !important;
}

.page-contact .contact-side-panel .muted-gold,
.page-contact .contact-side-panel a {
  color: #6a5a50 !important;
}

.page-contact .contact-side-panel a:hover {
  color: #ff7900 !important;
}

.band-gradient {
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.6) 0%, rgba(255, 242, 207, 0.4) 100%);
}

.band {
  background: rgba(255, 250, 240, 0.5);
}

/* Reviews page */
.stats-ribbon {
  background: linear-gradient(90deg, #ff7900 0%, #ff9a28 50%, #ff7900 100%);
  color: #fff;
}

.stats-ribbon .stat-number {
  color: #fff;
  text-shadow: 0 2px 8px rgba(82, 15, 13, 0.18);
}

.stats-ribbon .muted-gold {
  color: rgba(255, 255, 255, 0.92) !important;
}

.page-reviews .testimonial-flow .glass-card {
  background: #ffffff !important;
  border-top: 4px solid #ff7900 !important;
}

.page-reviews .testimonial-flow .glass-card:nth-child(odd) {
  background: linear-gradient(160deg, #fff8ec, #fff) !important;
}

.page-reviews .testimonial-flow .quote-icon {
  color: #ff7900;
  font-size: 2.2rem;
}

.page-reviews .testimonial-flow .stars {
  color: #ff7900;
}

.page-reviews .testimonial-flow .border-top {
  border-color: rgba(255, 121, 0, 0.2) !important;
}

.page-reviews .testimonial-flow .body-copy {
  color: #6a5a50 !important;
}

.page-reviews .band .glass-card {
  background: linear-gradient(160deg, #fff8ec, #fff) !important;
  border-top: 4px solid #ff7900 !important;
}

/* Blog page */
.blog-filter-strip {
  padding-top: 1.5rem;
}

.page-blog .category-btn {
  background: #fff;
  border: 1px solid rgba(255, 121, 0, 0.32);
  border-radius: 2rem;
  color: #19110d;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-blog .category-btn.active,
.page-blog .category-btn:hover {
  background: #ff7900;
  border-color: #ff7900;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 121, 0, 0.3);
}

.featured-article {
  position: relative;
  overflow: hidden;
  border-radius: 16px !important;
  background:
    linear-gradient(120deg, rgba(255, 121, 0, 0.92) 0%, rgba(191, 4, 3, 0.82) 100%) !important;
  box-shadow: 0 8px 28px rgba(255, 121, 0, 0.25) !important;
}

.featured-article .lead-copy,
.featured-article .muted-gold {
  color: rgba(255, 255, 255, 0.9) !important;
}

.blog-editorial-list .glass-card {
  display: grid;
  grid-template-rows: 150px 1fr;
  background: #fff !important;
  border: 1px solid rgba(255, 121, 0, 0.12) !important;
  border-radius: 16px !important;
  overflow: hidden;
  border-top: 4px solid #ff7900 !important;
}

.blog-editorial-list .blog-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-blog .blog-editorial-list .glass-card:hover {
  transform: translateY(-6px);
}

.page-contact .diff-item-box h3 {
  color: #bf0403;
}

.page-contact .diff-item-box p {
  color: #6a5a50 !important;
}

@media (max-width: 992px) {
  .story-chapter {
    padding: 1rem 1.15rem;
  }
}

/* Zodiac R Badge Styling */
.zodiac-r-badge {
  background: linear-gradient(135deg, #ffd700, #ffaa00) !important;
  border: 4px solid #fffaf0 !important;
  color: #1a0f0a !important;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(255, 170, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.5) !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.zodiac-r-badge:hover {
  transform: scale(1.2) rotate(10deg);
  background: linear-gradient(135deg, #fff066, #ffbb00) !important;
  border-color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(255, 170, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.4) !important;
}

/* Modal Popup Styles (Glassmorphism & premium UI) */
.guidance-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.guidance-modal.active {
  opacity: 1;
  visibility: visible;
}

.guidance-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 5, 0.82);
  backdrop-filter: blur(10px);
}

.guidance-modal-card {
  position: relative;
  width: 90%;
  max-width: 490px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(26, 17, 13, 0.95);
  border: 1px solid rgba(255, 170, 0, 0.3);
  backdrop-filter: blur(20px);
  border-radius: 2rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 170, 0, 0.12);
  padding: 3rem 2.2rem;
  z-index: 10052;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

.guidance-modal.active .guidance-modal-card {
  transform: scale(1);
}

.guidance-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

.guidance-modal-close:hover {
  color: #ffaa00;
  transform: rotate(90deg);
}

.guidance-modal-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 170, 0, 0.08);
  border: 1px solid rgba(255, 170, 0, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffaa00;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 24px rgba(255, 170, 0, 0.15);
}

.guidance-modal-title {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.guidance-modal-content {
  color: rgba(255, 250, 240, 0.92);
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.7;
}

.guidance-modal-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.guidance-modal-content li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
}

.guidance-modal-content li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #ffaa00;
  font-size: 1.2rem;
}

/* Quick Ribbon Track 5 columns configuration on Desktop */
.quick-ribbon-track {
  grid-template-columns: repeat(5, 1fr) !important;
  max-width: 1400px !important;
  padding: 0 1rem !important;
}

.quick-service-pill {
  padding: 0 1.5rem !important;
}

@media (max-width: 992px) {
  .quick-service-ribbon {
    overflow: hidden !important;
    width: 100% !important;
  }
  .quick-ribbon-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    width: 100% !important;
    padding: 0.75rem 1.25rem !important;
    gap: 1rem !important;
    justify-content: flex-start !important;
    scrollbar-width: none !important;
  }
  .quick-ribbon-track::-webkit-scrollbar {
    display: none !important;
  }
  .quick-service-pill {
    flex: 0 0 auto !important;
    width: auto !important;
    min-height: 54px !important;
    scroll-snap-align: start !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 2rem !important;
    padding: 0.5rem 1.5rem !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
  }
  .quick-service-pill span {
    white-space: nowrap !important;
  }
}

/* Adjust services-grid layout for center aligned items */
@media (min-width: 992px) {
  .services-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 0.8rem !important;
  }
  .service-card-black {
    flex: 1 1 0% !important;
    max-width: 220px !important;
    min-width: 175px !important;
    padding: 1.5rem 0.5rem !important;
    text-align: center;
  }
  .service-icon-black {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 1rem auto !important;
  }
  .service-name {
    font-size: 1.05rem !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0.5rem !important;
  }
  .service-desc {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1rem !important;
  }
  .service-card-black .btn {
    font-size: 0.8rem !important;
    padding: 0.5rem 0.75rem !important;
  }
}

@media (max-width: 991px) and (min-width: 577px) {
  .services-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1.5rem !important;
  }
  .service-card-black {
    flex: 0 1 260px !important;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .services-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
  }
  .service-card-black {
    flex: 0 1 100% !important;
    text-align: center;
  }
}

/* Zodiac alignment and vertical centering on Laptop/Desktop */
@media (min-width: 993px) {
  .zodiac-column {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 2rem !important;
    height: 100% !important;
  }
  .zodiac-column-right .zodiac-item {
    text-align: right !important;
    justify-content: flex-end !important;
  }
  .zodiac-column-right .zodiac-item span:first-child {
    text-align: right !important;
  }
}

/* Zodiac centering on Mobile/Tablet */
@media (max-width: 992px) {
  .zodiac-item {
    justify-content: flex-start !important;
    max-width: 290px !important;
    margin: 0 auto !important;
  }
  .zodiac-column-right .zodiac-item {
    justify-content: flex-start !important;
    max-width: 290px !important;
    margin: 0 auto !important;
  }
}

/* Modal mobile padding adjustments */
@media (max-width: 480px) {
  .guidance-modal-card {
    padding: 2.2rem 1.2rem !important;
    border-radius: 1.5rem !important;
  }
  .guidance-modal-title {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  .guidance-modal-content {
    font-size: 0.95rem !important;
  }
}

/* Payment styles on contact page */
.payment-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 170, 0, 0.25);
  border-radius: 1rem;
  padding: 1.5rem;
}

/* Premium Destiny Report Styling */
.premium-section {
  background: linear-gradient(180deg, rgba(82, 15, 13, 0.08) 0%, rgba(25, 17, 13, 0.96) 100%);
  border-top: 1px solid rgba(255, 121, 0, 0.12);
  border-bottom: 1px solid rgba(255, 121, 0, 0.12);
}

.premium-pricing-card {
  background: linear-gradient(145deg, #1f140f 0%, #150d0a 100%) !important;
  border: 2px solid var(--gold-500) !important;
  border-radius: 2rem !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(234, 179, 8, 0.15) !important;
  position: relative;
  overflow: hidden;
}

.premium-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #ff7900, #ff9a28);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 10px rgba(255, 121, 0, 0.28);
}

.pricing-title {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.6rem !important;
  line-height: 1.3;
  margin-top: 1rem;
}

.pricing-desc {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.pricing-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.original-price {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.3rem;
}

.discounted-price {
  color: var(--gold-400);
  font-size: 2.8rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.price-tax-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
}

.pricing-features-list {
  list-style: none;
  padding-left: 0;
}

.pricing-features-list li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.premium-input {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 170, 0, 0.3) !important;
  color: #fff !important;
  border-radius: 0.75rem !important;
  padding: 0.75rem 1rem !important;
}

.premium-input:focus {
  border-color: var(--gold-400) !important;
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.25) !important;
  outline: none;
}

.premium-report-panel {
  background: rgba(26, 17, 13, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px);
  border-radius: 2rem !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  min-height: 480px;
  position: relative;
  transition: all 0.5s ease;
}

.locked-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(255, 170, 0, 0.08);
  border: 1px solid rgba(255, 170, 0, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffaa00;
  font-size: 2.5rem;
  box-shadow: 0 0 30px rgba(255, 170, 0, 0.15);
  animation: lockPulse 2s infinite ease-in-out;
}

@keyframes lockPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.15);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(255, 170, 0, 0.3);
  }
}

.report-locked-state h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.report-locked-state p {
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.6;
}

.premium-info-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
}

.remedies-list li {
  margin-bottom: 0.65rem;
  position: relative;
  padding-left: 0.5rem;
}

/* Simulation Checkout Modal */
.mock-razorpay-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mock-razorpay-modal.active {
  opacity: 1;
  visibility: visible;
}

.mock-razorpay-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.mock-razorpay-card {
  position: relative;
  width: 90%;
  max-width: 400px;
  background: #1e2530;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  z-index: 20002;
  transform: translateY(30px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.mock-razorpay-modal.active .mock-razorpay-card {
  transform: translateY(0);
}

.mock-razorpay-header {
  background: #13171e;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-razorpay-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
}

.mock-razorpay-header-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

.mock-razorpay-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}

.mock-razorpay-close:hover {
  color: #fff;
}

.btn-mock-pay-method {
  background: #232a36;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 6px;
  transition: all 0.2s;
}

.btn-mock-pay-method:hover {
  background: #2e3747;
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  transform: translateY(-1px);
}

/* Redefine card max width for double-panel layout */
.mock-razorpay-card {
  max-width: 580px !important; /* Override standard 400px width */
}

/* Modal Body Layout */
.mock-razorpay-body {
  display: flex;
  min-height: 280px;
}

/* Sidebar Navigation Tabs */
.mock-razorpay-sidebar {
  width: 32%;
  background: #13171e;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}

.mock-tab-btn {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.65);
  padding: 0.85rem 0.75rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
}

.mock-tab-btn i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
}

.mock-tab-btn:hover {
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.mock-tab-btn.active {
  background: #1e2530;
  color: #008cff; /* Razorpay blue active indicator */
  border-left: 3px solid #008cff;
}

.mock-tab-btn.active i {
  color: #008cff;
}

/* Right Content Panels */
.mock-razorpay-content {
  width: 68%;
  padding: 1.25rem;
  background: #1e2530;
}

.mock-panel {
  display: none;
}

.mock-panel.active {
  display: block;
  animation: mockFadeIn 0.25s ease-out;
}

@keyframes mockFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bank Button Options */
.btn-mock-bank {
  background: #13171e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  border-radius: 4px;
  color: #fff;
  transition: all 0.2s;
}

.btn-mock-bank:hover {
  background: #232a36;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-mock-bank.active {
  background: #008cff;
  border-color: #008cff;
  color: #fff !important;
}

/* Additional UI Utilities */
.x-small {
  font-size: 0.7rem;
}

.mock-qr-container {
  display: inline-block;
  background: #fff;
  border: 1px solid #ddd;
}

/* Responsive Modal (Stack on mobile) */
@media (max-width: 520px) {
  .mock-razorpay-body {
    flex-direction: column;
  }
  .mock-razorpay-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .mock-tab-btn {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    padding: 0.65rem 0.75rem;
    white-space: nowrap;
  }
  .mock-tab-btn.active {
    border-left: none;
    border-bottom: 3px solid #008cff;
  }
  .mock-razorpay-content {
    width: 100%;
    padding: 1rem;
  }
}