/* === CSS Variables & Reset === */
:root {
  /* Primary Triadic Color Scheme */
  --primary: #4a4feb;
  --primary-dark: #3636d0;
  --primary-light: #6e6ef8;
  
  --secondary: #eb4a4f;
  --secondary-dark: #d03636;
  --secondary-light: #f86e6e;
  
  --tertiary: #4feb4a;
  --tertiary-dark: #36d036;
  --tertiary-light: #6ef86e;
  
  /* Neutral Colors */
  --dark: #0d0d2b;
  --medium-dark: #1a1a3a;
  --medium: #2d2d52;
  --medium-light: #4c4c7a;
  --light: #f8f9fa;
  
  /* Typography */
  --heading-font: 'Inter', sans-serif;
  --body-font: 'IBM Plex Sans', sans-serif;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  /* Neobrutalism */
  --neo-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.9);
  --neo-border: 3px solid black;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === Global Styles === */
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Titles */
.section-title {
  position: relative;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 1rem auto;
}

/* === Buttons === */
.button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: all var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button.is-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(74, 79, 235, 0.4);
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 79, 235, 0.6);
}

.button.is-secondary {
  background-color: var(--secondary);
  color: white;
  box-shadow: 0 4px 14px rgba(235, 74, 79, 0.4);
}

.button.is-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(235, 74, 79, 0.6);
}

.button.is-outlined {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.button.is-outlined:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.button.is-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Neo-Brutalist Button */
.neo-button {
  background-color: var(--tertiary);
  color: black;
  border: var(--neo-border);
  box-shadow: var(--neo-shadow);
  transform: translate(-3px, -3px);
}

.neo-button:hover {
  transform: translate(0, 0);
  box-shadow: none;
}

.pulse-button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 79, 235, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(74, 79, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 79, 235, 0);
  }
}

.glow-button {
  position: relative;
  overflow: hidden;
}

.glow-button:after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5) 50%, rgba(255,255,255,0));
  transform: rotateZ(60deg) translate(-5em, 7.5em);
  opacity: 0;
  transition: opacity 0.5s;
}

.glow-button:hover:after {
  opacity: 1;
  animation: sheen 1s forwards;
}

@keyframes sheen {
  100% {
    transform: rotateZ(60deg) translate(1em, -9em);
  }
}

/* === Header & Navigation === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(248, 249, 250, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(248, 249, 250, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: transparent !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.navbar-menu {
  display: flex;
}

.navbar-end {
  display: flex;
  align-items: center;
}

.navbar-item {
  margin: 0 0.8rem;
  font-weight: 500;
  color: var(--medium);
  transition: color 0.3s ease;
  position: relative;
}

.navbar-item:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.navbar-item:hover {
  color: var(--primary);
  text-decoration: none;
}

.navbar-item:hover:after {
  width: 100%;
}

.navbar-burger {
  display: none;
  cursor: pointer;
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(13, 13, 43, 0.7), rgba(13, 13, 43, 0.9));
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
  color: white !important;
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
  color: white !important;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
  color: rgba(255, 255, 255, 0.9);
}

.buttons-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.6s;
  animation-fill-mode: both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  animation: fadeInUp 1s ease-out 0.8s, bounce 2s infinite;
  animation-fill-mode: both;
}

.scroll-arrow {
  margin-top: 8px;
  width: 24px;
  height: 24px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(45deg);
  display: inline-block;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Features Section === */
.features-section {
  background-color: var(--light);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--light));
  z-index: 1;
}

.glassmorphic-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 2rem;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.glassmorphic-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.glassmorphic-card:hover .image-container img {
  transform: scale(1.05);
}

.card-content {
  padding: 1rem 0;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.progress-container {
  width: 100%;
  margin-top: auto;
  padding-top: 1rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--medium-dark);
}

.progress {
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #e9ecef;
  position: relative;
}

.progress.is-primary::-webkit-progress-value {
  background-color: var(--primary);
  transition: width 1.5s ease;
}

.progress-value {
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.25rem;
  text-align: right;
  font-size: 0.9rem;
}

/* === Methodology Section === */
.methodology-section {
  background-color: #f8f9fa;
  background-image: linear-gradient(135deg, rgba(74, 79, 235, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  padding: 5rem 0;
}

.methodology-image-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  position: relative;
  /* height: 400px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.methodology-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.methodology-content {
  padding: 1rem;
}

.accordion-container {
  margin-bottom: 2rem;
}

.accordion {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accordion-header {
  padding: 1.25rem;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(74, 79, 235, 0.05);
}

.accordion-header h3 {
  margin: 0;
  font-weight: 600;
}

.accordion-content {
  padding: 0 1.25rem 1.25rem;
  display: none;
}

.accordion.active .accordion-content {
  display: block;
  animation: fadeInDown 0.5s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.statistics-container {
  margin-top: 3rem;
}

.statistic-widget {
  text-align: center;
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.statistic-widget:hover {
  transform: translateY(-5px);
}

.statistic-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.statistic-label {
  font-size: 1rem;
  color: var(--medium);
  font-weight: 500;
}

/* === Instructors Section === */
.instructors-section {
  background-color: white;
  padding: 5rem 0;
}

.instructor-card {
  height: 100%;
}

.instructor-card .image-container {
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.instructor-card .card-content {
  text-align: center;
}

.instructor-specialties {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag {
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag.is-primary {
  background-color: rgba(74, 79, 235, 0.1);
  color: var(--primary);
}

.tag.is-primary:hover {
  background-color: var(--primary);
  color: white;
}

/* === Partners Section === */
.partners-section {
  background-color: var(--light);
  padding: 5rem 0;
}

.partner-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.partner-logo-container:hover {
  transform: scale(1.1);
}

.partner-logo-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.partner-testimonial {
  background-color: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-top: 4rem;
}

.partner-testimonial blockquote {
  font-size: 1.1rem;
  color: var(--medium-dark);
  font-style: italic;
  line-height: 1.7;
  position: relative;
  padding: 0 2rem;
}

.partner-testimonial blockquote::before,
.partner-testimonial blockquote::after {
  content: '"';
  position: absolute;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
}

.partner-testimonial blockquote::before {
  top: -2rem;
  left: -1rem;
}

.partner-testimonial blockquote::after {
  bottom: -4rem;
  right: -1rem;
}

.partner-testimonial cite {
  display: block;
  text-align: right;
  margin-top: 1rem;
  font-weight: 600;
  font-style: normal;
  color: var(--medium);
}

/* === Resources Section === */
.resources-section {
  background-color: var(--light);
  background-image: linear-gradient(135deg, rgba(74, 79, 235, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  padding: 5rem 0;
}

.resource-card {
  height: 100%;
}

.resource-card .image-container {
  height: 200px;
  border-radius: 8px;
}

.resource-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* === Insights Section === */
.insights-section {
  background-color: white;
  padding: 5rem 0;
}

.insight-card {
  height: 100%;
  overflow: hidden;
}

.insight-card .image-container {
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.insight-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-date {
  font-size: 0.9rem;
  color: var(--medium-light);
  margin-bottom: 1rem;
}

/* === Portfolio Section === */
.portfolio-section {
  background-color: var(--light);
  padding: 5rem 0;
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-card .image-container {
  height: 300px;
  border-radius: 12px;
}

.portfolio-meta {
  font-size: 1rem;
  color: var(--medium-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.transformation-metrics {
  margin-top: 2rem;
  width: 100%;
}

.metric {
  margin-bottom: 1.5rem;
}

.metric-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--medium-dark);
}

.metric-value {
  font-weight: 600;
  color: var(--primary);
  display: block;
  text-align: right;
  margin-top: 0.25rem;
}

/* === Research Section === */
.research-section {
  background-color: white;
  padding: 5rem 0;
}

.research-image-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.research-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-content {
  padding: 1rem;
}

.research-description {
  margin-top: 2rem;
}

.research-description p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* === Contact Section === */
.contact-section {
  background-color: var(--light);
  background-image: linear-gradient(135deg, rgba(74, 79, 235, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  padding: 5rem 0;
}

.contact-form-container {
  background-color: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.field {
  margin-bottom: 1.5rem;
}

.label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--medium-dark);
}

.input,
.textarea,
.select select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input:focus,
.textarea:focus,
.select select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 79, 235, 0.2);
}

.select {
  position: relative;
  width: 100%;
}

.select::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.8rem;
  color: var(--medium-dark);
}

.checkbox {
  display: flex;
  align-items: center;
}

.checkbox input[type="checkbox"] {
  margin-right: 0.5rem;
}

.contact-info-container {
  background-color: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.contact-item .icon {
  margin-right: 1rem;
  color: var(--primary);
}

.business-hours {
  margin-top: 2.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.day {
  font-weight: 600;
  color: var(--medium-dark);
}

.consultation-cta {
  margin-top: 2.5rem;
}

/* === Footer === */
.footer {
  background-color: var(--dark) !important;
  color: white;
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, var(--light), transparent);
  opacity: 0.1;
}

.footer-branding {
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  font-weight: 500;
}

.social-links a:hover {
  color: white;
  text-decoration: none;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
  text-decoration: none;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-signup {
  margin-top: 2rem;
}

.newsletter-signup h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: white;
  text-decoration: none;
}

/* === Success Page === */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background-color: var(--light);
}

.success-container {
  max-width: 700px;
  padding: 4rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.success-icon {
  font-size: 4rem;
  color: var(--tertiary);
  margin-bottom: 2rem;
}

.success-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.success-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--medium);
  line-height: 1.7;
}

/* === Terms & Privacy Pages === */
.terms-page,
.privacy-page {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.terms-container,
.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.terms-title,
.privacy-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--dark);
}

.terms-content,
.privacy-content {
  color: var(--medium);
  line-height: 1.7;
}

.terms-content h2,
.privacy-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--dark);
}

.terms-content p,
.privacy-content p {
  margin-bottom: 1.5rem;
}

.terms-content ul,
.privacy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.terms-content li,
.privacy-content li {
  margin-bottom: 0.75rem;
}

/* === Media Queries === */
@media screen and (max-width: 1023px) {
  .navbar-burger {
    display: block;
  }
  
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .navbar-item {
    margin: 0.75rem 0;
    width: 100%;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.6rem;
  }
  
  .buttons-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .buttons-container .button {
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .contact-form-container,
  .contact-info-container {
    margin-bottom: 2rem;
  }
  
  .footer {
    padding: 3rem 0 2rem;
  }
  
  .footer-branding,
  .footer-links,
  .footer-contact {
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom p {
    margin-bottom: 1rem;
  }
  
  .footer-legal-links {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .contact-form-container,
  .contact-info-container {
    padding: 1.5rem;
  }
  
  .success-container,
  .terms-container,
  .privacy-container {
    padding: 1.5rem;
  }
  
  .success-title {
    font-size: 2rem;
  }
  
  .success-message {
    font-size: 1rem;
  }
}

/* Active state utilities */
.is-active {
  display: block !important;
}

/* Animation Utilities */
.animate-fadeIn {
  animation: fadeIn 1s ease-out;
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease-out;
}

.animate-fadeInDown {
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#cookie-consent-popup {
  position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(13, 13, 43, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.2) 0px -5px 20px;
}

.map-container {
  width: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* при необходимости */
}

/* 768px и ниже — 1 колонка */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}