/* Template 30 - Teal Turquoise / Modern Energy */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Raleway:wght@400;500;600;700&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
  --gradient-2: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
  --gradient-3: linear-gradient(135deg, #1de9b6 0%, #1dc4e9 100%);
  --gradient-4: linear-gradient(135deg, #00e5ff 0%, #00b8d4 100%);
  --gradient-5: linear-gradient(135deg, #26c6da 0%, #00acc1 100%);

  --bg-primary: #0a1929;
  --bg-secondary: #132f4c;
  --glass-bg: rgba(0, 210, 255, 0.08);
  --glass-border: rgba(29, 233, 182, 0.2);

  --text-primary: #e3f2fd;
  --text-secondary: #b3e5fc;
  --text-muted: #81d4fa;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 25% 35%, rgba(0, 210, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(29, 233, 182, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(0, 184, 212, 0.1) 0%, transparent 50%);
  animation: energyPulse 15s ease infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes energyPulse {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(5%, -5%) rotate(180deg);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header - Modern and Energetic */
.site-header {
  background: rgba(10, 25, 41, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(29, 233, 182, 0.3);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 210, 255, 0.15);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: "Raleway", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.site-logo a:hover {
  filter: brightness(1.3);
  transform: scale(1.05);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-nav a:hover {
  color: #1de9b6;
  background: rgba(29, 233, 182, 0.1);
  box-shadow: 0 0 20px rgba(29, 233, 182, 0.2);
}

/* Hero Section - Energetic */
.section.head {
  padding: 9rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section.head h1 {
  font-family: "Raleway", sans-serif;
  font-size: 4.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: energyGlow 2s ease-in-out infinite alternate;
  letter-spacing: -2px;
  text-transform: uppercase;
}

@keyframes energyGlow {
  0% {
    filter: brightness(1) drop-shadow(0 0 20px rgba(0, 210, 255, 0.3));
  }
  100% {
    filter: brightness(1.4) drop-shadow(0 0 40px rgba(29, 233, 182, 0.5));
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 400;
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 4rem;
}

.section header h2 {
  font-family: "Raleway", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.section header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Footer - Modern */
.footer {
  background: rgba(10, 25, 41, 0.9);
  backdrop-filter: blur(20px);
  padding: 3.5rem 0 1.5rem;
  border-top: 2px solid rgba(29, 233, 182, 0.3);
  margin-top: 5rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: #1de9b6;
  text-shadow: 0 0 15px rgba(29, 233, 182, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(29, 233, 182, 0.2);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.7s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.7rem;
  color: #1de9b6;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 700;
}
