/* Template 10 - Arctic Ice / Cool Minimalist */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  --ice-white: #ffffff;
  --ice-snow: #f8fafc;
  --ice-frost: #e2e8f0;
  --ice-silver: #cbd5e1;
  --ice-steel: #94a3b8;
  --ice-slate: #64748b;
  --ice-dark: #334155;
  --ice-navy: #1e293b;
  --accent-blue: #0ea5e9;
  --accent-cyan: #06b6d4;
  --accent-light: #7dd3fc;
}

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

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

body {
  font-family: 'Work Sans', sans-serif;
  line-height: 1.7;
  color: var(--ice-dark);
  background: var(--ice-snow);
  font-weight: 400;
  overflow-x: hidden;
}

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

/* Header - Frosted Glass Style */
.site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--ice-frost);
}

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

.site-logo a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ice-navy);
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo a::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  color: var(--accent-blue);
}

.site-logo a:hover::before {
  transform: scale(1.5);
  box-shadow: 0 0 15px var(--accent-blue);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: var(--ice-frost);
  padding: 0.35rem;
  border-radius: 100px;
}

.site-nav a {
  color: var(--ice-slate);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.site-nav a:hover {
  color: var(--ice-navy);
  background: var(--ice-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.section.head {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--ice-white) 0%, var(--ice-snow) 100%);
}

.section.head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.section.head h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--ice-navy);
  line-height: 1.2;
  letter-spacing: -1px;
}

.section.head p {
  font-size: 1.2rem;
  color: var(--ice-slate);
  max-width: 650px;
  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: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ice-navy);
  letter-spacing: -0.5px;
}

.section header p {
  font-size: 1.1rem;
  color: var(--ice-slate);
  max-width: 550px;
  margin: 0 auto;
}

/* Footer - Clean Ice Style */
.footer {
  background: var(--ice-white);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  border-top: 1px solid var(--ice-frost);
}

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

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

.footer-tagline {
  color: var(--ice-slate);
  line-height: 1.8;
  font-size: 1rem;
}

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

.footer-links a {
  color: var(--ice-slate);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: var(--ice-frost);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--ice-white);
  background: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--ice-frost);
}

.copyright a {
  color: var(--ice-steel);
  font-size: 0.9rem;
}

/* Animations */
@keyframes iceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: iceFadeIn 0.7s ease forwards;
}

@keyframes iceFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.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-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: var(--ice-navy);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 600;
}
