.elementor-11583 .elementor-element.elementor-element-2577f183 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-11583 .elementor-element.elementor-element-9caddd5 > .elementor-element-populated{padding:0px 0px 0px 0px;}/* Start custom CSS for da_hero, class: .elementor-element-8db1e2c *//* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Rokkitt:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Tailwind Base */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* ===== CSS VARIABLES ===== */
:root {
  /* Core Colors */
  --background: 0 0% 4%;
  --foreground: 45 100% 98%;
  --card: 0 0% 8%;
  --card-foreground: 45 100% 98%;
  --popover: 0 0% 8%;
  --popover-foreground: 45 100% 98%;
  --primary: 43 100% 50%;
  --primary-foreground: 0 0% 4%;
  --secondary: 0 0% 12%;
  --secondary-foreground: 45 100% 98%;
  --muted: 0 0% 15%;
  --muted-foreground: 0 0% 65%;
  --accent: 43 80% 45%;
  --accent-foreground: 0 0% 4%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 0 0% 18%;
  --input: 0 0% 18%;
  --ring: 43 100% 50%;
  --radius: 0.75rem;

  /* Custom Tokens */
  --gold: 43 100% 50%;
  --gold-light: 45 100% 70%;
  --gold-dark: 40 90% 35%;
  --navy: 0 0% 4%;
  --navy-light: 0 0% 10%;
  --slate: 0 0% 22%;
  --cream: 45 100% 98%;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, hsl(43 100% 50%), hsl(40 90% 35%));
  --gradient-dark: linear-gradient(180deg, hsl(0 0% 4%), hsl(0 0% 8%));
  --gradient-card: linear-gradient(145deg, hsl(0 0% 10%), hsl(0 0% 6%));
  --gradient-hero: radial-gradient(ellipse at top, hsl(0 0% 12%), hsl(0 0% 4%));

  /* Shadows */
  --shadow-gold: 0 4px 30px hsl(43 100% 50% / 0.15);
  --shadow-card: 0 8px 32px hsl(0 0% 0% / 0.5);
  --shadow-elevated: 0 20px 60px hsl(0 0% 0% / 0.6);

  /* Sidebar */
  --sidebar-background: 0 0% 8%;
  --sidebar-foreground: 45 100% 98%;
  --sidebar-primary: 43 100% 50%;
  --sidebar-primary-foreground: 0 0% 4%;
  --sidebar-accent: 0 0% 12%;
  --sidebar-accent-foreground: 45 100% 98%;
  --sidebar-border: 0 0% 18%;
  --sidebar-ring: 43 100% 50%;
}

/* ===== BASE STYLES ===== */
* {
  border-color: hsl(var(--border));
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: 'Rokkitt', serif;
}

/* ===== COMPONENT STYLES ===== */

/* Gold Gradient Text */
.text-gradient-gold {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(135deg, hsl(var(--gold)) 0%, hsl(var(--gold-light)) 50%, hsl(var(--gold)) 100%);
}

/* Background Gradients */
.bg-gradient-hero {
  background: var(--gradient-hero);
}

.bg-gradient-card {
  background: var(--gradient-card);
}

/* Border Gradient */
.border-gold-gradient {
  border-image: linear-gradient(135deg, hsl(var(--gold)), hsl(var(--gold-dark))) 1;
}

/* Gold Glow Effect */
.glow-gold {
  box-shadow: var(--shadow-gold);
}

/* Elevated Card */
.card-elevated {
  background-color: hsl(var(--card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: var(--shadow-card);
}

/* Section Padding */
.section-padding {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 8rem 1.5rem;
  }
}

/* Container Narrow */
.container-narrow {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTON STYLES ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, hsl(43 100% 50%), hsl(40 90% 35%));
  color: hsl(0 0% 4%);
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px hsl(43 100% 50% / 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px hsl(43 100% 50% / 0.4);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: hsl(43 100% 50%);
  font-weight: 600;
  border: 2px solid hsl(43 100% 50%);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.btn-gold-outline:hover {
  background: hsl(43 100% 50% / 0.1);
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-slow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes scale-in {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Utility Classes */
.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 3s ease-in-out infinite;
}

.animate-shimmer {
  animation: shimmer 2.5s linear infinite;
  background-size: 200% 100%;
}

.animate-fade-up {
  animation: fade-up 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scale-in 0.5s ease-out forwards;
}

/* ===== ACCORDION STYLES ===== */
.accordion-item {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 500;
  color: hsl(var(--foreground));
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.accordion-trigger:hover {
  background: hsl(var(--secondary));
}

.accordion-content {
  padding: 0 1.5rem 1.25rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* ===== UTILITY CLASSES ===== */
.text-gold {
  color: hsl(var(--gold));
}

.bg-gold {
  background-color: hsl(var(--gold));
}

.border-gold {
  border-color: hsl(var(--gold));
}

.text-cream {
  color: hsl(var(--cream));
}

.bg-navy {
  background-color: hsl(var(--navy));
}

.bg-navy-light {
  background-color: hsl(var(--navy-light));
}/* End custom CSS */