:root {
    --purple-deep: #2e004e;
    --purple-main: #6a0dad;
    --gold: #FFD700;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--purple-deep);
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- Loader --- */
#loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #2e004e, #1a002e);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1; /* important to start visible */
  transition: opacity 0.6s ease;
}

.loader-content {
  text-align: center;
}

.loader-icon {
  font-size: 3.5rem;
  color: #ffd700;
  animation: pulseGlow 2.2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.12); opacity: 1; }
}


/* --- Bubble Background --- */
.bubbles {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; overflow: hidden;
}
.bubble {
    position: absolute; bottom: -100px;
    background: var(--glass);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    animation: moveUp 15s infinite linear;
}

@keyframes moveUp {
    from { transform: translateY(0) rotate(0deg); opacity: 1; }
    to { transform: translateY(-120vh) rotate(360deg); opacity: 0; }
}

/* --- Animations --- */
@keyframes shine {
    0% { background-position: -100%; }
    100% { background-position: 200%; }
}

.shining-text {
    background: linear-gradient(90deg, #fff, var(--gold), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    font-weight: 700;
}

.pulse-btn {
    animation: pulse-btn 2s infinite;
    border: none;
    background: var(--gold);
    color: var(--purple-deep) !important;
    font-weight: bold;
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* --- Glassy Cards --- */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    transition: 0.4s;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- Navigation --- */
.navbar {
    background: rgba(46, 0, 78, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gold);
}
.nav-link { color: #fff !important; }
.nav-link:hover { color: var(--gold) !important; }

/* Mobile Bottom Nav */
.mobile-nav {
    position: fixed; bottom: 0; width: 100%;
    background: rgba(46, 0, 78, 0.95);
    display: none; justify-content: space-around;
    padding: 10px 0; border-top: 2px solid var(--gold);
    z-index: 1000;
}
.mobile-nav a { color: #ccc; text-decoration: none; font-size: 12px; text-align: center; }
.mobile-nav a.active { color: var(--gold); }
.mobile-nav i { display: block; font-size: 20px; }

/* --- Sticky Buttons --- */
.sticky-actions {
    position: fixed; bottom: 80px; right: 20px;
    display: flex; flex-direction: column; gap: 10px; z-index: 999;
}
.action-btn {
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none; transition: 0.3s;
}
.btn-whatsapp { background: #25d366; }
.btn-call { background: #007bff; }
.btn-pay { background: var(--gold); color: var(--purple-deep); }

/* --- Sections --- */
section { padding: 80px 0; }
/* .hero {
    height: 90vh; display: flex; align-items: center;
    background: linear-gradient(rgba(46, 0, 78, 0.6), rgba(46, 0, 78, 0.6)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1600&q=80');
    background-size: cover; background-position: center;
} */

@media (max-width: 768px) {
.mobile-nav { display: flex; }
.navbar { display: none; }
section { padding: 50px 0 80px 0; }
}

/* TARIFF TABLE */

#tariff .tariff-table{
  width:100%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,193,7,0.45);
  background:rgba(10,8,20,0.85);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,193,7,0.25);
}

/*  Header  */
#tariff .tariff-table thead th{
  background:linear-gradient(
    135deg,
    #b8860b,
    #ffcc33,
    #b8860b
  ) !important;
  color:#111 !important;
  font-weight:600;
  letter-spacing:.4px;
  text-align:center;
  padding:16px 12px;
  position:relative;
  overflow:hidden;
  border:none;
}

/* Header shimmer animation */
#tariff .tariff-table thead th::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,.35),
    transparent 65%
  );
  transform:translateX(-100%);
  animation:goldShine 4s infinite;
}

/*  Body Cells  */
#tariff .tariff-table tbody td{
  background:rgba(20,18,32,0.9) !important;
  color:#e8e6f0;
  text-align:center;
  padding:14px 10px;
  font-size:.95rem;
  white-space:nowrap;
  border-color:rgba(255,255,255,0.05);
}

#tariff .tariff-table tbody tr:nth-child(even) td{
  background:rgba(28,25,42,0.9) !important;
}

/* Hover */
#tariff .tariff-table tbody tr:hover td{
  background:linear-gradient(
    90deg,
    rgba(255,193,7,0.22),
    rgba(255,193,7,0.08)
  ) !important;
  color:#fff;
}

#tariff .table-responsive{
  overflow-x:auto;
  margin-top:20px;
}

/* Gold shimmer animation */
@keyframes goldShine{
  0%{transform:translateX(-100%);}
  100%{transform:translateX(100%);}
}

@media (max-width: 576px) {

  body, html {
    overflow-x: hidden;
  }

  #tariff .tariff-table {
    width: 100%;
    max-width: 100%;
  }

  /* text wrap */
  #tariff .tariff-table tbody td,
  #tariff .tariff-table thead th {
    white-space: normal;   
    font-size: 0.85rem;
    padding: 12px 8px;
  }

  #tariff .table-responsive {
    overflow-x: hidden;
  }
}

.hero{
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Image */
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Purple Overlay */
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(46, 0, 78, 0.6);
  z-index: 1;
}

/* Content above image */
.hero .container{
  position: relative;
  z-index: 2;
  color: #fff;
}


/* faq */
.accordion-button::after{
  filter: invert(1);
}

.accordion-button:not(.collapsed){
  color: #ffcc33;
  background: transparent;
}

#faq .accordion-button{
  color: #ffffff !important;
  font-weight: 500;
  box-shadow: none !important;
}

#faq .accordion-button:focus{
  box-shadow: none !important;
  border-color: rgba(255,193,7,0.8) !important;
}

#faq .accordion-button:hover{
  background: linear-gradient(
    90deg,
    rgba(255,193,7,0.18),
    rgba(255,193,7,0.08)
  );
  color: #ffffff !important;
}

#faq .accordion-button:not(.collapsed){
  background: linear-gradient(
    90deg,
    rgba(255,193,7,0.25),
    rgba(255,193,7,0.12)
  );
  color: #ffffff !important;
  border-left: 4px solid #ffcc33;
}

#faq .accordion-body{
  color: #ffffff;
}

#faq .accordion-button::after{
  filter: brightness(0) saturate(100%) invert(84%) sepia(24%)
          saturate(746%) hue-rotate(2deg) brightness(105%);
}

#services .glass-card{
  transition: transform .35s ease, box-shadow .35s ease;
}

#services .glass-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

/* NAVBAR FIX */
.navbar {
  background: #3a005f;
  min-height: 64px;
  z-index: 2000;
}

/* Logo image always visible */
.navbar-logo {
  height: 36px;
  width: auto;
  display: block;
}

/* Ensure brand never hides */
.navbar-brand {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

/* Prevent hero overlap */
body {
  padding-top: 64px;
}

/* Mobile specific */
@media (max-width: 768px) {
  .navbar {
    display: block;
  }
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}
