/* ====== Root & Theme Variables (Dark Emerald & Gold Theme) ====== */
:root {
  /* Fonts */
  --font-heading: 'Archivo Black', Arial Black, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;

  /* Primary Colors - Dark Gaming Theme */
  --dark-bg: #0d1117;
  --emerald: #50c878;
  --gold: #d4af37;
  --white: #ffffff;
  --text-primary: #d7d7d7;
  --heading-color: #d4af37;
  --card-bg: rgba(20, 25, 30, 0.65);
  --glass-border: rgba(212, 175, 55, 0.2);
  --cta-glow: rgba(212, 175, 55, 0.7);
  --link-color: #50c878;

  /* Missing Color Variables - Emerald & Gold Theme */
  --color-primary: #50c878;
  --color-primary-dark: #38a560;
  --color-primary-light: #6fd89f;
  --color-accent1: #d4af37;
  --color-accent2: #f0d89f;

  /* Text Colors */
  --text-secondary: #999;
  --text-inverse: #FFFFFF;

  /* Background gradients */
  --bg-gradient-main: linear-gradient(135deg, #0d1117 0%, #020409 100%);
  --bg-gradient-accent: linear-gradient(45deg, #50c878, #d4af37);
  --bg-gradient-dark: linear-gradient(135deg, #0d1117 0%, #020409 100%);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);

  /* Shadows */
  --shadow-glow-primary: 0 0 20px var(--color-primary-light);
  --shadow-glow-accent: 0 0 18px var(--color-accent1);

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;

  /* Radius */
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Animation */
  --particle-size: 4px;
  --particle-color: rgba(255,255,255,0.15);
  --particle-glow: 0 0 8px rgba(255,255,255,0.3);
}

/* ====== Import Fonts ====== */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Roboto&display=swap');

/* ====== Global Base ====== */
html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background: var(--bg-gradient-dark);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-gradient-dark);
  color: var(--text-primary);
}

/* ====== Headings ====== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-inverse);
  margin-top: 0;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  letter-spacing: 0.06em;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.8rem;
}
h4 {
  font-size: 1.3rem;
}

/* ====== Paragraphs ====== */
p {
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  max-width: 40em;
}

/* ====== Links (incl. 'Читать далее') ====== */
a {
  color: var(--color-accent1);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
a:hover,
a:focus {
  color: var(--color-accent2);
  text-decoration: underline;
  outline: none;
  text-shadow: 0 0 10px var(--color-accent2);
}

/* Special link style for 'Читать далее' */
.read-more {
  display: inline-block;
  font-weight: 700;
  color: var(--color-primary-light);
  padding: 0.15em 0.4em;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.95rem;
}
.read-more:hover,
.read-more:focus {
  color: var(--color-accent1);
  border-bottom-color: var(--color-accent1);
  outline: none;
  text-shadow: var(--shadow-glow-accent);
}

/* ====== Buttons (Global) ====== */
.btn, button, input[type='submit'] {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  border-radius: var(--radius-md);
  padding: 0.8rem 2rem;
  border: none;
  color: var(--dark-text, #0d0d0d);
  background: var(--color-primary);
  box-shadow: var(--shadow-glow-primary);
  transition: background-color 0.4s ease, box-shadow 0.4s ease, transform 0.2s ease;
  text-align: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  text-transform: uppercase;
}
.btn:hover,
button:hover,
input[type='submit']:hover {
  background-color: var(--color-primary-dark);
  box-shadow: 0 0 28px var(--color-primary-dark);
  transform: scale(1.05);
}
.btn:focus,
button:focus,
input[type='submit']:focus {
  outline: 3px solid var(--color-accent1);
  outline-offset: 2px;
  background-color: var(--color-primary-dark);
  box-shadow: 0 0 30px var(--color-accent1);
}

/* ===== Site Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg-gradient-dark);
  border-bottom: 2px solid var(--color-primary);
  z-index: 1050;
  box-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  min-height: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

header .logo {
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

#menu-toggle { display: none; }

.burger-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
}

.burger-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--gold);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links li { margin: 0; }

.nav-links a {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--gold);
  text-shadow: 0 0 10px var(--cta-glow);
}

@media (max-width: 768px) {
  .burger-label { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--dark-bg);
    border-top: 2px solid var(--color-primary);
    padding: 1rem 0;
    gap: 0;
  }

  .nav-links li { padding: 0.75rem 1.5rem; }

  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }
}

/* ====== Hero Section ====== */
#hero {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-md);
  color: var(--text-inverse);
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('image/hero_modern_gradient_bg_netherlands_city_night_1920x1080.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  min-height: 60vh;
  user-select: none;
}

/* Hero text wrapper */
#hero .hero-text {
  max-width: 48em;
  padding: var(--spacing-lg);
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-border) 0 0 30px;
  backdrop-filter: blur(12px);
}

/* Hero headings */
#hero h1 {
  margin-bottom: var(--spacing-md);
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--text-inverse);
  text-shadow: 0 0 15px rgba(0,0,0,0.7);
}

/* Hero paragraphs */
#hero p {
  font-size: 1.2rem;
  color: var(--text-inverse);
  line-height: 1.5;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* ====== Sections Base Style ====== */
section {
  padding: var(--spacing-lg) var(--spacing-md);
  max-width: 1120px;
  margin: 0 auto;
  color: var(--text-primary);
  font-family: var(--font-body);
}

/* is-two-thirds approximate */
.is-two-thirds {
  width: 66.6667%;
  margin-left: auto;
  margin-right: auto;
}

/* Flex Centering common for cards, profiles */
.flex-center-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ====== Cards Style (used in Research, Team, Resources, Press) ====== */
.card, 
.item, 
.testimonial, 
.team-member, 
.product-card, 
.resource-item {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
  max-width: 360px;
  width: 100%;
  transition: box-shadow 0.3s ease;
  cursor: default;
  font-family: var(--font-body);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Card hover effect */
.card:hover,
.item:hover,
.testimonial:hover,
.team-member:hover,
.product-card:hover,
.resource-item:hover {
  box-shadow: 0 0 20px var(--color-accent1);
}

/* Card headings */
.card h3,
.item h3,
.testimonial h3,
.team-member h3,
.product-card h3,
.resource-item h3 {
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-heading);
  color: var(--color-primary-light);
  font-size: 1.4rem;
}

/* Card images container */
.card .image-container,
.item .image-container,
.team-member .image-container,
.product-card .image-container,
.resource-item .image-container {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Card images */
.card img,
.item img,
.team-member img,
.product-card img,
.resource-item img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
  border-radius: var(--radius-md);
  display: block;
}

/* ====== Section Specific ====== */

/* Contact Section */
#contact {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--glass-border);
  padding: var(--spacing-lg);
  backdrop-filter: blur(20px);
  color: var(--text-primary);
  font-family: var(--font-body);
}

/* Contact form elements */
#contact label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 700;
  color: var(--color-primary-light);
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-primary-dark);
  background: rgba(255 255 255 / 0.05);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}
#contact input[type="text"]:focus,
#contact input[type="email"]:focus,
#contact textarea:focus {
  outline: none;
  border-color: var(--color-accent1);
  box-shadow: 0 0 12px var(--color-accent1);
  background: rgba(255 255 255 / 0.1);
  color: var(--text-inverse);
}

/* Research, Team, Success Stories, Sustainability, Press, Resources section headings */
section#research h2,
section#team h2,
section#success h2,
section#sustainability h2,
section#press h2,
section#resources h2 {
  font-size: 2.4rem;
  font-family: var(--font-heading);
  color: var(--color-primary-light);
  margin-bottom: var(--spacing-lg);
  text-align: center;
  letter-spacing: 0.05em;
}

/* Success section (success.html special) */
.success-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--bg-gradient-main);
  color: var(--text-inverse);
}
.success-page-wrapper h1,
.success-page-wrapper h2 {
  margin-bottom: var(--spacing-md);
  text-shadow: 0 0 15px rgba(0,0,0,0.8);
}

/* Sustainability, Press, Research, Resources, Team blocks textual layout */
section#sustainability p,
section#press p,
section#research p,
section#resources p,
section#team p {
  max-width: 48em;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
  font-size: 1rem;
  font-family: var(--font-body);
}

/* Footer */
footer {
  background: var(--bg-gradient-dark);
  color: var(--text-secondary);
  padding: var(--spacing-lg) var(--spacing-md);
  border-top: 2px solid var(--color-primary);
  font-size: 0.9rem;
}

/* Footer links container */
footer nav,
footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

/* Footer links */
footer nav a {
  color: var(--color-accent1);
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  transition: color 0.3s ease;
  cursor: pointer;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--color-accent2);
  text-shadow: 0 0 8px var(--color-accent2);
  outline: none;
}

/* Social links - text only icons */
footer .social-links a {
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  user-select: none;
}
footer .social-links a:hover,
footer .social-links a:focus {
  color: var(--color-accent1);
  text-shadow: 0 0 12px var(--color-accent1);
  outline: none;
}

/* Footer text */
footer .footer-copy {
  text-align: center;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  user-select: none;
}

/* ==== Images and Cards: Strict Centering ==== */
img {
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  user-select: none;
  pointer-events: none;
}

/* All cards with images center flex */
.card,
.item,
.testimonial,
.team-member,
.product-card,
.resource-item {
  text-align: center;
  align-items: center;
}
.card .image-container,
.item .image-container,
.team-member .image-container,
.product-card .image-container,
.resource-item .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  height: 200px;
  overflow: hidden;
  width: 100%;
  margin-bottom: var(--spacing-md);
}

/* ====== Padding top for privacy & terms pages ====== */
.privacy-content,
.terms-content {
  padding-top: 100px;
}

/* Background images general rules with overlay for text readability */
.bg-image-dark-overlay {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}
.bg-image-dark-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
  z-index: 1;
  pointer-events: none;
}

/* Parallax background sections (optional usage) */
.parallax-bg {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

/* ====== Particle animation container & particles ====== */
.particles-container {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  background-color: var(--particle-color);
  border-radius: 50%;
  filter: drop-shadow(var(--particle-glow));
  opacity: 0.8;
  animation: particleMove 10s linear infinite;
  will-change: transform, opacity;
  width: var(--particle-size);
  height: var(--particle-size);
  mix-blend-mode: screen;
}

@keyframes particleMove {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) translateX(20vw);
    opacity: 0;
  }
}

/* ====== Hover & Focus Transitions for interactive elements ====== */
button, .btn, a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== Responsive Layouts & Grids ====== */

/* Two-thirds container with grid & flexible centering */
.two-thirds {
  max-width: 66.6667%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: var(--spacing-lg);
}

/* Cards wrapper grid */
.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  justify-items: center;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

/* For .team-member, .testimonial, etc. */
.flex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  justify-content: center;
  padding-top: var(--spacing-md);
}

/* Adjust font-sizes and paddings on smaller screens */
@media (max-width: 992px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }

  .two-thirds {
    max-width: 90%;
  }
  #hero {
    padding: var(--spacing-md);
    min-height: 45vh;
  }
  #hero h1 {
    font-size: 2.6rem;
  }
}

/* Small screens */
@media (max-width: 576px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.2rem; }

  .two-thirds, #contact, .success-page-wrapper {
    width: 100%;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
  }
}

/* ====== Utility Classes ====== */
.text-center {
  text-align: center !important;
}
.mt-md {
  margin-top: var(--spacing-lg) !important;
}
.mb-md {
  margin-bottom: var(--spacing-lg) !important;
}
.p-md {
  padding: var(--spacing-md) !important;
}
.rounded-lg {
  border-radius: var(--radius-lg) !important;
}
.shadow-glow-primary {
  box-shadow: var(--shadow-glow-primary) !important;
}
.shadow-glow-accent {
  box-shadow: var(--shadow-glow-accent) !important;
}

/* ====== Focus styles for accessibility ====== */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline-offset: 3px;
  outline-color: var(--color-accent1);
  outline-style: solid;
}

/* ==== Scroll smooth + parallax notes ==== */
html {
  scroll-behavior: smooth;
}

/* ==== Additional overrides or small fixes ==== */
.container-main {
  padding-top: 5rem; /* offset fixed navbar height */
}

/* ==== Text readability improvements ==== */
section {
  color: var(--text-primary);
  text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

/* ==== Main Content Padding ==== */
main {
  padding-top: 60px;
  min-height: 100vh;
}

/* ==== Hero Section Styles ==== */
#hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('image/hero-nederland-nightcity.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
}

#hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  background: rgba(0, 0, 0, 0.45);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  max-width: 900px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 1.2rem;
  color: #eee;
  margin-bottom: 1.5rem;
}

.hero-content a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  background-color: var(--emerald);
  color: var(--dark-bg);
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 12px var(--emerald);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-content a:hover {
  background-color: var(--gold);
  box-shadow: 0 0 15px var(--gold);
  color: var(--dark-bg);
}

/* ==== About Section ==== */
#about,
#values,
#team,
#achievements,
#testimonials,
#gallery,
#cta {
  padding: 2.5rem 1.5rem;
}

#about h2,
#values h2,
#team h2,
#achievements h2,
#testimonials h2,
#gallery h2,
#cta h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Light background sections */
#values,
#achievements {
  background-color: #f9f9f9;
}
#values h2,
#achievements h2 {
  color: var(--color-primary-dark);
}
#cta h2 {
  color: var(--color-primary-dark);
}
#cta > p {
  color: #333;
}

#about > div,
#team > div,
#gallery > div {
  max-width: 1100px;
  margin: 0 auto;
}

#about > div {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1rem;
  color: var(--text-primary);
}

/* Values section layout */
#values > div {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

#values > div > div {
  flex: 1 1 45%;
  background: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

#values h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

#values ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#values li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: #333;
}

#values img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Team section layout */
#team > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.team-member-card {
  flex: 1 1 calc(25% - 1.5rem);
  min-width: 200px;
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  text-align: center;
  transition: all 0.3s;
}

.team-member-card:hover {
  box-shadow: 0 0 20px rgba(80, 200, 120, 0.4);
  transform: translateY(-5px);
}

.team-member-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.team-member-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.team-member-card p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

/* Achievements section */
#achievements > div {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

#achievements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#achievements li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #333;
}

#achievements img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Testimonials section */
#testimonials > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 1 1 calc(45% - 1.5rem);
  min-width: 250px;
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0.5rem 0 0;
}

/* Gallery section */
#gallery > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

#gallery img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* CTA section */
#cta {
  background-color: #f1f1f1;
  text-align: center;
}

#cta h2 {
  margin-bottom: 1rem;
}

#cta > p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

#cta a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  background: var(--emerald);
  color: var(--dark-bg);
  border-radius: 12px;
  box-shadow: 0 0 12px var(--emerald);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

#cta a:hover {
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold);
  color: var(--dark-bg);
}

/* ==== Contact & Form Sections ==== */
.section-header {
  padding: 1.5rem 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--heading-color);
  text-align: center;
  margin: 1rem 0;
}

.company-info {
  margin-top: 2rem;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.info-container > div {
  flex: 1 1 300px;
}

.info-container h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-accent1);
}

.info-container p {
  margin: 0.5rem 0;
  color: var(--text-primary);
}

.info-container a {
  color: var(--emerald);
}

.info-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
}

.contact-form {
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent1);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent1);
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1.5px solid var(--emerald);
  background-color: rgba(10, 10, 10, 0.6);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  background-color: rgba(15, 20, 10, 0.75);
}

.contact-form button {
  padding: 0.75rem;
  background-color: var(--emerald);
  color: var(--dark-bg);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(80, 200, 120, 0.7);
  cursor: pointer;
  font-weight: 900;
  transition: all 0.3s;
}

.contact-form button:hover {
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
  color: var(--dark-bg);
}

/* Working hours section */
.working-hours {
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.working-hours h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-accent1);
}

.working-hours p {
  margin: 0.5rem 0;
  color: var(--text-primary);
}

/* ==== Privacy & Terms Styles ==== */
.privacy-content,
.terms-content {
  padding-top: 100px;
}

.privacy-content main,
.terms-content main {
  padding: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-gradient-main);
}

.privacy-content h1,
.terms-content h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.privacy-content section,
.terms-content section {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.privacy-content section h2,
.terms-content section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-accent1);
}

.privacy-content section p,
.terms-content section p {
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}

.privacy-content footer,
.terms-content footer {
  background-color: var(--dark-bg);
  color: #ddd;
  padding: 1.5rem;
  margin-top: 2rem;
}

.privacy-content footer nav,
.terms-content footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-content footer nav a,
.terms-content footer nav a {
  color: var(--emerald);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
}

.privacy-content footer nav a:hover,
.terms-content footer nav a:hover {
  text-decoration: underline;
  color: var(--gold);
}

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

.success-page-wrapper h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.success-page-wrapper p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  color: var(--white);
}

.btn-home {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  background-color: var(--emerald);
  color: var(--white);
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(80, 200, 120, 0.8);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-home:hover,
.btn-home:focus {
  background-color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.9);
  outline: none;
  color: var(--dark-bg);
}

/* ==== Responsive Adjustments ==== */
@media (max-width: 768px) {
  main {
    padding-top: 100px;
  }

  #hero {
    min-height: 60vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  #about h2,
  #values h2,
  #team h2,
  #achievements h2,
  #testimonials h2,
  #gallery h2,
  #cta h2 {
    font-size: 2rem;
  }

  #values > div {
    flex-direction: column;
  }

  #values > div > div {
    flex: 1 1 100%;
  }

  #team > div {
    flex-direction: column;
    align-items: center;
  }

  .team-member-card {
    flex: 1 1 100%;
    max-width: 300px;
  }

  #testimonials > div {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    flex: 1 1 100%;
    max-width: 400px;
  }

  .info-container {
    flex-direction: column;
  }

  .info-container > div {
    flex: 1 1 100%;
  }

  .contact-form form {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  #hero {
    min-height: 50vh;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2rem;
  }

  #about h2,
  #values h2,
  #team h2,
  #achievements h2,
  #testimonials h2,
  #gallery h2,
  #cta h2 {
    font-size: 1.7rem;
  }

  #gallery > div {
    grid-template-columns: 1fr;
  }

  .success-page-wrapper h1 {
    font-size: 2rem;
  }

  .success-page-wrapper p {
    font-size: 1rem;
  }
}