:root{
  --gold:#c9a227;
  --dark:#071833;
  --ivory:#f9f4e8;
  --text:#3e3121;
}

/* GLOBAL */

html,
body{
  max-width:100%;
  overflow-x:hidden;
}

body{
  background:var(--ivory);
  color:var(--text);
  font-family:'Segoe UI',sans-serif;
  position:relative;
}

/* LIGHT RASI BACKGROUND */

body::before{
  content:"♈ ♉ ♊ ♋ ♌ ♍ ♎ ♏ ♐ ♑ ♒ ♓";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  font-size:36px;
  line-height:3.2;
  letter-spacing:20px;
  color:rgba(201,162,39,0.01);
  z-index:-2;
  pointer-events:none;
  transform:rotate(-10deg);
  opacity:.28;
}

/* DIVINE LIGHT EFFECT */

body::after{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at top right,
      rgba(255,215,120,0.035),
      transparent 35%
    ),
    radial-gradient(circle at bottom left,
      rgba(201,162,39,0.045),
      transparent 32%
    );
  z-index:-3;
  pointer-events:none;
}

/* NAVBAR */

.main-nav{
  background:#fff8e7 !important;
  border-bottom:1px solid rgba(201,162,39,0.15);
  position:sticky;
  top:0;
  z-index:9999;
}

.navbar-brand span{
  color:var(--gold) !important;
  font-weight:700;
}

.nav-link{
  color:var(--text) !important;
  font-weight:600;
}

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

.nav-logo{
  width:46px !important;
  height:46px !important;
  object-fit:cover !important;
  border-radius:12px !important;
}

.navbar-toggler{
  border:0 !important;
}

.navbar-toggler-icon{
  filter:invert(1);
}

/* HERO */

.hero{
  background:linear-gradient(
    135deg,
    #071833,
    #102645 55%,
    #3b2f1b
  ) !important;

  padding:60px 0;
  position:relative;
  overflow:hidden;
}

.hero .container{
  max-width:1140px;
}

.hero .row{
  margin-left:0;
  margin-right:0;
}

.hero h1,
.hero p{
  color:white;
}

.hero .lead{
  color:rgba(255,255,255,0.82);
}

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

.hero-logo{
  display:block;
  width:180px !important;
  height:180px !important;
  max-width:180px !important;
  object-fit:cover !important;
  margin:0 auto 24px auto;
  border-radius:24px;
}

/* BUTTONS */

.btn-gold{
  background:linear-gradient(
    135deg,
    #d4af37,
    #b8921e
  );

  border:none;
  color:#fff !important;
  font-weight:700;
  border-radius:12px;
  padding:12px 22px;
}

.btn-gold:hover{
  background:linear-gradient(
    135deg,
    #b8921e,
    #a88312
  );

  color:#fff !important;
}

.btn-dark-blue{
  background:#3a2c1c;
  border:none;
  color:#fff;
  border-radius:12px;
}

/* SERVICES */

.services-showcase{
  overflow:hidden;
  width:100%;
}

.service-scroll-wrapper{
  overflow:hidden;
  width:100%;
  max-width:100%;
}

.service-scroll-track{
  display:flex;
  gap:18px;
  width:max-content;
  animation:scrollServices 38s linear infinite;
}

.service-slide{
  width:300px;
  min-width:300px;
  flex:0 0 300px;
}

@keyframes scrollServices{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }
}

.service-card{
  min-height:520px;
  background:rgba(255,255,255,0.85);
  border:1px solid rgba(201,162,39,0.15);
  border-radius:22px;
  overflow:hidden;
}

.service-icon{
  font-size:38px;
  color:var(--gold);
}

.service-desc{
  font-size:14px;
  line-height:1.7;
  color:#5c4c38;
}

/* PACKAGE SECTION */

.packages{
  background:rgba(255,255,255,0.45);
  border-top:1px solid rgba(201,162,39,0.10);
  border-bottom:1px solid rgba(201,162,39,0.10);
}

/* FORMS */

.auth-box{
  max-width:700px;
  background:rgba(255,255,255,0.75);
  padding:40px;
  border-radius:24px;
  border:1px solid rgba(201,162,39,0.12);
}

input,
select,
textarea{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #ddd1b3;
}

input:focus,
select:focus,
textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(201,162,39,0.10);
}

label{
  font-weight:700;
  margin-top:12px;
  margin-bottom:6px;
  color:#4d3c28;
}

/* FOOTER */

.footer-dark{
  background:#f3ead7;
  color:#6b5739;
  border-top:1px solid rgba(201,162,39,0.12);
}

/* ALERT */

.alert{
  border:none;
  border-radius:14px;
}

/* MOBILE */

@media(max-width:768px){

  .main-nav{
    position:sticky;
    top:0;
    z-index:999;
  }

  .hero{
    padding:45px 0 !important;
    text-align:center;
  }

  .hero-logo{
    width:145px !important;
    height:145px !important;
    max-width:145px !important;
  }

  .hero h1{
    font-size:28px;
    line-height:1.25;
  }

  .hero h3{
    font-size:22px;
  }

  .hero .lead{
    font-size:17px;
  }

  .service-slide{
    width:280px;
    min-width:280px;
    flex:0 0 280px;
  }

  .service-card{
    min-height:unset;
  }

  .auth-box{
    padding:24px;
  }
}