/* =============================================
   SANDIPTA CREATION — GLOBAL STYLES
   Theme: Dark Cinematic Gold
   ============================================= */

:root {
  --gold: #D4A853;
  --gold-light: #F0C96B;
  --gold-dark: #A07830;
  --black: #080808;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #242424;
  --white: #F5F0E8;
  --grey: #888888;
  --grey-light: #CCCCCC;
  --accent: #D4A853;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Raleway', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --glow: 0 0 30px rgba(212,168,83,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.4rem; }
p { font-weight: 300; color: var(--grey-light); font-size: 1rem; }

.accent { color: var(--gold); }
.section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-top: 0.5rem; }

/* BUTTONS */
.btn-hero {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  font-weight: 700;
}
.btn-hero:hover {
  background: var(--gold-light);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--glow);
}
.center-btn { text-align: center; margin-top: 3rem; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4%;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,168,83,0.2);
  padding: 0.5rem 4%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  cursor: pointer;
}
.logo-icon { 
  height: 70px; 
  width: 70px; 
  object-fit: contain;
  display: block;
  background: transparent;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
}
.logo-text em { color: var(--gold); font-style: normal; display: block; font-size: 0.75rem; letter-spacing: 0.25em; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--grey-light);
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 28px; height: 2px; background: var(--gold); transition: var(--transition); }

/* PAGE HERO (for inner pages) */
.page-hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--dark2);
  margin-top: 0;
  padding-top: 80px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,168,83,0.15) 0%, transparent 70%);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark2) 50%, rgba(212,168,83,0.05) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content h1 { font-size: clamp(2.5rem, 6vw, 5rem); margin-top: 1rem; }

/* FOOTER */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(212,168,83,0.2);
  padding: 5rem 4% 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-text { font-size: 1.5rem; }
.footer-brand p { margin: 1.2rem 0; font-size: 0.9rem; max-width: 280px; }
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,168,83,0.4);
  color: var(--gold);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--glow);
}
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.8rem; }
.footer-links ul li a {
  color: var(--grey-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links ul li a:hover { color: var(--gold); }
.footer-contact p {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-contact p i { color: var(--gold); width: 16px; }
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.85rem; color: var(--grey); }

/* PAGE SECTIONS */
section { padding: 7rem 4%; }

/* STATS BAR */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark2);
  border-top: 1px solid rgba(212,168,83,0.2);
  border-bottom: 1px solid rgba(212,168,83,0.2);
  padding: 3rem 4%;
}
.stat {
  text-align: center;
  border-right: 1px solid rgba(212,168,83,0.15);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat p { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.5rem; color: var(--grey); }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stat { border-bottom: 1px solid rgba(212,168,83,0.1); }
}
@media (max-width: 768px) {
  .navbar { padding: 1rem 5%; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 0; right: 0;
    width: 75%; height: 100vh;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(30px);
    align-items: center; justify-content: center;
    gap: 2.5rem;
    border-left: 1px solid rgba(212,168,83,0.2);
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 1001; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  section { padding: 5rem 5%; }
}
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Optional: Hide text on mobile to keep it a simple circle */
@media screen and (max-width: 768px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }
    .whatsapp-icon {
        margin-right: 0;
    }
}