:root {
  --primary: #0f5132;
  --secondary: #0d6efd;
  --accent: #f97316;
  --gold: #d4af37;
  --white: #ffffff;
  --bg-light: #f8f9fa;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: #212529;
  overflow-x: hidden;
}

h1, h2, h3, .font-heading {
  font-family: var(--font-heading);
}

/* Glassmorphism Classes */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

/* Header & Nav */
.navbar-custom {
  transition: all 0.4s ease;
  background: transparent;
}

.navbar-custom.scrolled {
  background: rgba(15, 81, 50, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(15,81,50,0.7) 100%);
}

/* Floating Action Buttons */
.float-btn {
  position: fixed;
  bottom: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

.float-btn:hover { transform: scale(1.1); color: #fff; }
.float-whatsapp { right: 25px; background-color: #25d366; }
.float-call { right: 85px; background-color: var(--secondary); }