/* =============================================
   SKYEX PREMIUM STYLESHEET
   Luxury Black & Gold Theme
   ============================================= */

:root {
  --gold: #d6b54f;
  --gold-light: #f7dd82;
  --gold-dark: #a8882e;
  --bg-primary: #040404;
  --bg-secondary: #0b0b0b;
  --bg-card: rgba(255,255,255,0.03);
  --bg-glass: rgba(214,181,79,0.05);
  --text-primary: #ffffff;
  --text-secondary: #c9c9c9;
  --text-muted: #888888;
  --border-gold: rgba(214,181,79,0.3);
  --border-gold-hover: rgba(214,181,79,0.7);
  --gradient-bg: linear-gradient(135deg,#040404,#0b0b0b,#111111,#040404);
  --gradient-gold: linear-gradient(135deg,#d6b54f,#f7dd82,#d6b54f);
  --gradient-card: linear-gradient(135deg,rgba(214,181,79,0.08),rgba(214,181,79,0.02));
  --shadow-gold: 0 0 30px rgba(214,181,79,0.15);
  --shadow-gold-hover: 0 0 50px rgba(214,181,79,0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html{scroll-behavior:smooth;font-size:16px}

body{
  background:var(--bg-primary);
  background-image:var(--gradient-bg);
  background-attachment:fixed;
  color:var(--text-primary);
  font-family:'Inter','Segoe UI',system-ui,sans-serif;
  line-height:1.7;
  overflow-x:hidden;
  min-height:100vh;
}

/* SCROLLBAR */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:#040404}
::-webkit-scrollbar-thumb{background:var(--gradient-gold);border-radius:3px}

/* SELECTION */
::selection{background:var(--gold);color:#040404}

/* TYPOGRAPHY */
h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.2;letter-spacing:-0.02em}
h1{font-size:clamp(2rem,5vw,3.5rem)}
h2{font-size:clamp(1.6rem,3.5vw,2.5rem)}
h3{font-size:clamp(1.2rem,2.5vw,1.7rem)}
h4{font-size:1.2rem}

.gold-text{background:var(--gradient-gold);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.text-secondary-custom{color:var(--text-secondary)}
.text-muted-custom{color:var(--text-muted)}

/* LINKS */
a{color:var(--gold);text-decoration:none;transition:var(--transition)}
a:hover{color:var(--gold-light)}

/* =============================================
   NAVBAR
   ============================================= */
.navbar-skyex{
  background:rgba(4,4,4,0.95);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border-gold);
  padding:12px 0;
  position:sticky;
  top:0;
  z-index:1000;
  transition:var(--transition);
}

.navbar-brand img{height:44px;width:auto}

.nav-link-custom{
  color:var(--text-secondary) !important;
  font-weight:500;
  font-size:0.9rem;
  padding:8px 14px !important;
  border-radius:8px;
  transition:var(--transition);
  letter-spacing:0.01em;
}
.nav-link-custom:hover,.nav-link-custom.active{
  color:var(--gold) !important;
  background:var(--bg-glass);
}

.navbar-toggler{border:1px solid var(--border-gold);padding:6px 10px}
.navbar-toggler-icon{filter:invert(1)}

.btn-nav-cta{
  background:var(--gradient-gold);
  color:#040404 !important;
  font-weight:700;
  padding:8px 20px !important;
  border-radius:50px;
  font-size:0.85rem;
  letter-spacing:0.02em;
}
.btn-nav-cta:hover{
  box-shadow:var(--shadow-gold-hover);
  transform:translateY(-1px);
  color:#040404 !important;
}

/* DROPDOWN */
.dropdown-menu{
  background:#0d0d0d;
  border:1px solid var(--border-gold);
  border-radius:var(--radius);
  padding:8px;
  min-width:200px;
}
.dropdown-item{
  color:var(--text-secondary);
  border-radius:8px;
  padding:8px 14px;
  font-size:0.88rem;
  transition:var(--transition);
}
.dropdown-item:hover{background:var(--bg-glass);color:var(--gold)}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding:100px 0 60px;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 80% 60% at 50% 0%,rgba(214,181,79,0.12) 0%,transparent 70%);
}

.hero-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(214,181,79,0.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(214,181,79,0.04) 1px,transparent 1px);
  background-size:60px 60px;
  animation:gridMove 20s linear infinite;
}

@keyframes gridMove{
  0%{background-position:0 0}
  100%{background-position:60px 60px}
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(214,181,79,0.1);
  border:1px solid var(--border-gold);
  border-radius:50px;
  padding:6px 18px;
  font-size:0.8rem;
  color:var(--gold);
  font-weight:600;
  letter-spacing:0.05em;
  text-transform:uppercase;
  margin-bottom:24px;
}

.hero-badge::before{
  content:'';
  width:8px;
  height:8px;
  background:var(--gold);
  border-radius:50%;
  animation:pulse 1.5s ease infinite;
}

@keyframes pulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:0.5;transform:scale(1.3)}
}

.hero-title{margin-bottom:20px}

.hero-desc{
  font-size:1.1rem;
  color:var(--text-secondary);
  max-width:540px;
  margin-bottom:36px;
  line-height:1.8;
}

.hero-stats{
  display:flex;
  gap:32px;
  flex-wrap:wrap;
  margin-bottom:40px;
}

.hero-stat{text-align:center}
.hero-stat-num{
  font-size:1.8rem;
  font-weight:800;
  background:var(--gradient-gold);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  display:block;
  line-height:1;
}
.hero-stat-label{font-size:0.75rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.05em;margin-top:4px}

/* =============================================
   BUTTONS
   ============================================= */
.btn-gold{
  background:var(--gradient-gold);
  color:#040404;
  font-weight:700;
  padding:14px 32px;
  border-radius:50px;
  border:none;
  cursor:pointer;
  font-size:0.95rem;
  letter-spacing:0.02em;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:var(--transition);
  position:relative;
  overflow:hidden;
}

.btn-gold::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,0.2),transparent);
  opacity:0;
  transition:var(--transition);
}

.btn-gold:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-gold-hover);
  color:#040404;
}
.btn-gold:hover::after{opacity:1}

.btn-outline-gold{
  background:transparent;
  color:var(--gold);
  border:1px solid var(--border-gold);
  padding:13px 32px;
  border-radius:50px;
  font-weight:600;
  font-size:0.95rem;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:var(--transition);
  cursor:pointer;
}
.btn-outline-gold:hover{
  background:var(--bg-glass);
  border-color:var(--gold);
  color:var(--gold);
  transform:translateY(-2px);
  box-shadow:var(--shadow-gold);
}

.btn-sm-gold{
  padding:9px 22px;
  font-size:0.85rem;
  border-radius:50px;
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section-pad{padding:90px 0}
.section-pad-sm{padding:60px 0}

.section-label{
  display:inline-block;
  color:var(--gold);
  font-size:0.75rem;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  margin-bottom:12px;
}

.section-title{margin-bottom:16px}
.section-desc{color:var(--text-secondary);font-size:1.05rem;max-width:620px;line-height:1.8}

.divider-gold{
  width:60px;
  height:3px;
  background:var(--gradient-gold);
  border-radius:2px;
  margin:16px 0 24px;
}

.divider-gold.center{margin:16px auto 24px}

/* =============================================
   CARDS
   ============================================= */
.card-glass{
  background:var(--bg-card);
  border:1px solid var(--border-gold);
  border-radius:var(--radius-lg);
  padding:32px;
  transition:var(--transition);
  position:relative;
  overflow:hidden;
  backdrop-filter:blur(10px);
}

.card-glass::before{
  content:'';
  position:absolute;
  inset:0;
  background:var(--gradient-card);
  opacity:0;
  transition:var(--transition);
}

.card-glass:hover{
  border-color:var(--border-gold-hover);
  transform:translateY(-6px);
  box-shadow:var(--shadow-gold);
}
.card-glass:hover::before{opacity:1}

.card-icon{
  width:56px;
  height:56px;
  background:var(--gradient-gold);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  margin-bottom:20px;
  color:#040404;
}

.card-icon-outline{
  width:56px;
  height:56px;
  background:rgba(214,181,79,0.1);
  border:1px solid var(--border-gold);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  margin-bottom:20px;
  color:var(--gold);
  transition:var(--transition);
}

.card-glass:hover .card-icon-outline{
  background:var(--gradient-gold);
  color:#040404;
  border-color:transparent;
}

/* =============================================
   STATS / COUNTERS
   ============================================= */
.stats-section{
  background:linear-gradient(135deg,rgba(214,181,79,0.06),rgba(214,181,79,0.02));
  border-top:1px solid var(--border-gold);
  border-bottom:1px solid var(--border-gold);
}

.stat-item{text-align:center;padding:40px 20px}
.stat-number{
  font-size:clamp(2.2rem,4vw,3rem);
  font-weight:900;
  background:var(--gradient-gold);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  display:block;
  line-height:1;
}
.stat-label{color:var(--text-secondary);font-size:0.9rem;margin-top:8px;font-weight:500}

/* =============================================
   HOW TO GET ID - STEPS
   ============================================= */
.step-item{
  display:flex;
  gap:24px;
  align-items:flex-start;
  padding:28px;
  border-radius:var(--radius);
  border:1px solid var(--border-gold);
  background:var(--bg-card);
  transition:var(--transition);
  margin-bottom:20px;
}
.step-item:hover{
  border-color:var(--gold);
  background:var(--gradient-card);
  transform:translateX(6px);
}

.step-num{
  min-width:50px;
  height:50px;
  background:var(--gradient-gold);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:1.1rem;
  color:#040404;
}

/* =============================================
   TABLE
   ============================================= */
.table-gold{
  border-collapse:separate;
  border-spacing:0;
  width:100%;
}

.table-gold thead th{
  background:linear-gradient(135deg,rgba(214,181,79,0.15),rgba(214,181,79,0.05));
  color:var(--gold);
  font-weight:700;
  padding:16px 20px;
  border-bottom:2px solid var(--border-gold);
  font-size:0.9rem;
  letter-spacing:0.03em;
}

.table-gold tbody td{
  padding:14px 20px;
  border-bottom:1px solid rgba(214,181,79,0.08);
  color:var(--text-secondary);
  font-size:0.9rem;
  vertical-align:middle;
}

.table-gold tbody tr:hover td{
  background:rgba(214,181,79,0.04);
  color:var(--text-primary);
}

.table-gold tbody tr:last-child td{border-bottom:none}

.table-wrapper{
  background:var(--bg-card);
  border:1px solid var(--border-gold);
  border-radius:var(--radius-lg);
  overflow:hidden;
}

/* =============================================
   FAQ
   ============================================= */
.faq-item{
  border:1px solid var(--border-gold);
  border-radius:var(--radius);
  margin-bottom:12px;
  overflow:hidden;
  transition:var(--transition);
}

.faq-item:hover{border-color:var(--border-gold-hover)}

.faq-question{
  padding:20px 24px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:var(--bg-card);
  color:var(--text-primary);
  font-weight:600;
  font-size:0.95rem;
  gap:16px;
  transition:var(--transition);
}

.faq-question:hover,.faq-question.active{
  background:var(--gradient-card);
  color:var(--gold);
}

.faq-icon{
  min-width:24px;
  height:24px;
  background:var(--border-gold);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.9rem;
  color:var(--gold);
  transition:var(--transition);
}

.faq-question.active .faq-icon{
  background:var(--gradient-gold);
  color:#040404;
  transform:rotate(45deg);
}

.faq-answer{
  padding:0 24px;
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease,padding 0.3s ease;
  color:var(--text-secondary);
  font-size:0.92rem;
  line-height:1.8;
}

.faq-answer.open{
  max-height:300px;
  padding:0 24px 20px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card{
  background:var(--bg-card);
  border:1px solid var(--border-gold);
  border-radius:var(--radius-lg);
  padding:28px;
  height:100%;
  transition:var(--transition);
}
.testimonial-card:hover{
  border-color:var(--border-gold-hover);
  transform:translateY(-4px);
  box-shadow:var(--shadow-gold);
}

.stars{color:var(--gold);font-size:0.9rem;letter-spacing:2px;margin-bottom:16px}

.testimonial-text{
  color:var(--text-secondary);
  font-size:0.92rem;
  line-height:1.8;
  margin-bottom:20px;
  font-style:italic;
}

.testimonial-author{display:flex;align-items:center;gap:12px}

.author-avatar{
  width:44px;
  height:44px;
  background:var(--gradient-gold);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:#040404;
  font-size:1rem;
}

.author-name{font-weight:600;font-size:0.9rem}
.author-role{color:var(--text-muted);font-size:0.8rem}

/* =============================================
   CRICKET MATCHES
   ============================================= */
.match-card{
  background:var(--bg-card);
  border:1px solid var(--border-gold);
  border-radius:var(--radius);
  padding:20px;
  transition:var(--transition);
  margin-bottom:16px;
}
.match-card:hover{
  border-color:var(--border-gold-hover);
  box-shadow:var(--shadow-gold);
}

.match-status{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:0.75rem;
  font-weight:700;
  letter-spacing:0.05em;
  text-transform:uppercase;
  padding:4px 12px;
  border-radius:50px;
}
.status-live{background:rgba(255,68,68,0.15);color:#ff4444}
.status-upcoming{background:rgba(214,181,79,0.15);color:var(--gold)}

.match-teams{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:16px 0;
  gap:16px;
}

.team-name{font-weight:700;font-size:1rem;text-align:center}
.vs-badge{
  background:var(--gradient-gold);
  color:#040404;
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.75rem;
  font-weight:800;
  flex-shrink:0;
}

.match-meta{color:var(--text-muted);font-size:0.8rem}

/* =============================================
   FLOATING WHATSAPP FAB
   ============================================= */
.skyex-fab{
  position:fixed;
  bottom:28px;
  right:28px;
  z-index:9999;
  display:flex;
  align-items:center;
  gap:10px;
  background:#25D366;
  color:#fff;
  padding:14px 22px;
  border-radius:50px;
  font-weight:700;
  font-size:0.9rem;
  text-decoration:none;
  box-shadow:0 4px 20px rgba(37,211,102,0.45);
  animation:skyexFloat 3s ease-in-out infinite;
  transition:background .25s,box-shadow .25s;
  white-space:nowrap;
}
.skyex-fab:hover{
  background:#1ebe5d;
  color:#fff;
  box-shadow:0 8px 30px rgba(37,211,102,0.65);
}
.skyex-fab i{
  font-size:1.35rem;
  line-height:1;
  flex-shrink:0;
}
.skyex-fab-pulse{
  position:absolute;
  inset:0;
  border-radius:50px;
  background:#25D366;
  animation:skyexPulse 2s ease-out infinite;
  z-index:-1;
  pointer-events:none;
}
@keyframes skyexFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-7px)}
}
@keyframes skyexPulse{
  0%{transform:scale(1);opacity:.55}
  100%{transform:scale(1.45);opacity:0}
}

/* Mobile — pill shape with text */
@media(max-width:767px){
  .skyex-fab{
    padding:13px 18px;
    border-radius:50px;
    bottom:18px;
    right:14px;
    font-size:0.82rem;
    gap:8px;
  }
  .skyex-fab-text{display:inline}
  .skyex-fab i{font-size:1.2rem}
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section{
  background:linear-gradient(135deg,rgba(214,181,79,0.08),rgba(214,181,79,0.03));
  border-top:1px solid var(--border-gold);
  border-bottom:1px solid var(--border-gold);
  padding:80px 0;
  text-align:center;
}

/* =============================================
   FOOTER
   ============================================= */
.footer{
  background:#020202;
  border-top:1px solid var(--border-gold);
  padding:60px 0 0;
}

.footer-brand img{height:48px;margin-bottom:16px}

.footer-desc{
  color:var(--text-muted);
  font-size:0.88rem;
  line-height:1.8;
  max-width:300px;
}

.footer-heading{
  color:var(--gold);
  font-size:0.85rem;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  margin-bottom:20px;
}

.footer-links{list-style:none;padding:0}
.footer-links li{margin-bottom:10px}
.footer-links a{
  color:var(--text-muted);
  font-size:0.87rem;
  transition:var(--transition);
}
.footer-links a:hover{color:var(--gold);padding-left:4px}

.footer-bottom{
  border-top:1px solid rgba(214,181,79,0.1);
  padding:20px 0;
  margin-top:40px;
  text-align:center;
  color:var(--text-muted);
  font-size:0.82rem;
}

.footer-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:rgba(214,181,79,0.1);
  border:1px solid var(--border-gold);
  border-radius:6px;
  padding:4px 12px;
  font-size:0.75rem;
  color:var(--gold);
  margin:4px;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-section{
  background:rgba(214,181,79,0.03);
  border-bottom:1px solid rgba(214,181,79,0.1);
  padding:16px 0;
}

.breadcrumb-custom{
  display:flex;
  align-items:center;
  gap:8px;
  list-style:none;
  padding:0;
  margin:0;
  flex-wrap:wrap;
}

.breadcrumb-custom li{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:0.83rem;
  color:var(--text-muted);
}

.breadcrumb-custom li::after{
  content:'›';
  color:var(--border-gold);
}

.breadcrumb-custom li:last-child::after{display:none}
.breadcrumb-custom li:last-child{color:var(--gold)}
.breadcrumb-custom a{color:var(--text-muted)}
.breadcrumb-custom a:hover{color:var(--gold)}

/* =============================================
   PAGE HERO (Inner pages)
   ============================================= */
.page-hero{
  padding:80px 0 60px;
  position:relative;
  overflow:hidden;
}

.page-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 80% 60% at 50% 0%,rgba(214,181,79,0.1) 0%,transparent 70%);
}

/* =============================================
   ID INFO BOXES
   ============================================= */
.info-box{
  background:linear-gradient(135deg,rgba(214,181,79,0.1),rgba(214,181,79,0.03));
  border:1px solid var(--border-gold);
  border-radius:var(--radius);
  padding:24px;
}

.info-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid rgba(214,181,79,0.1);
}
.info-row:last-child{border-bottom:none}
.info-label{color:var(--text-muted);font-size:0.88rem}
.info-value{font-weight:600;color:var(--text-primary);font-size:0.9rem}
.info-value.gold{color:var(--gold)}

/* =============================================
   BADGE CHIPS
   ============================================= */
.badge-gold{
  background:rgba(214,181,79,0.15);
  color:var(--gold);
  border:1px solid rgba(214,181,79,0.3);
  padding:4px 12px;
  border-radius:50px;
  font-size:0.78rem;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:4px;
}

.badge-green{
  background:rgba(34,197,94,0.1);
  color:#22c55e;
  border:1px solid rgba(34,197,94,0.3);
  padding:4px 12px;
  border-radius:50px;
  font-size:0.78rem;
  font-weight:600;
}

/* =============================================
   FEATURE HIGHLIGHT
   ============================================= */
.feature-list{list-style:none;padding:0}
.feature-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid rgba(214,181,79,0.08);
  color:var(--text-secondary);
  font-size:0.92rem;
}
.feature-list li:last-child{border-bottom:none}
.feature-list li::before{
  content:'✓';
  background:var(--gradient-gold);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  font-weight:800;
  margin-top:2px;
  flex-shrink:0;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}

.animate-fade-up{animation:fadeInUp 0.7s ease forwards}
.animate-fade{animation:fadeIn 0.7s ease forwards}

[data-aos]{opacity:0;transform:translateY(24px);transition:opacity 0.6s ease,transform 0.6s ease}
[data-aos].aos-animate{opacity:1;transform:translateY(0)}

/* =============================================
   LOADING SPINNER
   ============================================= */
.spinner-gold{
  width:40px;height:40px;
  border:3px solid rgba(214,181,79,0.2);
  border-top-color:var(--gold);
  border-radius:50%;
  animation:spin 0.8s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width:991px){
  .hero-section{padding:120px 0 60px}
  .section-pad{padding:60px 0}
  .hero-stats{gap:20px}
}

@media (max-width:767px){
  .hero-section{padding:100px 0 50px;text-align:center}
  .hero-desc{margin-left:auto;margin-right:auto}
  .hero-stats{justify-content:center}
  .divider-gold{margin-left:auto;margin-right:auto}
  .section-desc{margin-left:auto;margin-right:auto;text-align:center}

}

@media (max-width:575px){
  .card-glass{padding:24px 20px}
  .step-item{flex-direction:column}
  .match-teams{flex-direction:column;text-align:center}
  .info-row{flex-direction:column;text-align:center;gap:4px}
  .hero-stat-num{font-size:1.5rem}
}

/* Print */
@media print{
  .navbar-skyex{display:none}
}


