/* palette: terracotta-teal */
:root {
  --primary-color: #C04A1A;
  --secondary-color: #D86228;
  --accent-color: #005060;
  --background-color: #FFF0E8;
  --dark-color: #111111;
  --text-color: #333333;
  --border-color: rgba(255,255,255,0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.25);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.35);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Inter', sans-serif;
}
.bg-gray-100,
.bg-white,
.bg-yellow-100,
.bg-blue-100,
.bg-red-100,
.bg-green-100,
.bg-gray-100 p,
.bg-white p,
.bg-yellow-100 p,
.bg-blue-100 p,
.bg-red-100 p,
.bg-green-100 p {
  color: #111A13;
}
/* DARK-PRO PRESET LITERAL RULES */
body,html{background:var(--secondary-color);color:#F0F0F0} section{background:#6e4f40;padding:56px 16px;margin:0} @media(min-width:1024px){section{padding:72px 24px}} .card{background:rgba(255,255,255,0.06);border-top:3px solid var(--accent-color);border-radius:8px} p,.subtitle{color:rgba(240,240,240,0.75)} .btn:hover,.btn:focus{box-shadow:0 0 24px var(--accent-color)} section+section{border-top:1px solid rgba(255,255,255,0.08)}

/* CSS-only @property declarations for animations */
@property --count { syntax:'<integer>'; initial-value:0; inherits:false; }

/* RESET & BASE STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--alt-font);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--main-font);
  color: #FFFFFF;
}
h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.2;
}
h2 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
h3 {
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 600;
  margin-bottom: 12px;
}
p {
  font-size: clamp(14px, 1.6vw, 17px);
  margin-bottom: 16px;
}
.subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: clamp(15px, 1.8vw, 18px);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* HEADER & NAVIGATION */
header {
  background: var(--secondary-color);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.logo img {
  max-height: 40px;
  width: auto;
}
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}
.bar {
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  transition: transform 0.3s, opacity 0.3s;
}
.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--secondary-color);
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.site-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
}
.site-nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
#menu-toggle:checked ~ .site-nav {
  display: block;
}
#menu-toggle:checked ~ .burger-btn .bar:first-child {
  transform: translateY(8px) rotate(45deg);
}
#menu-toggle:checked ~ .burger-btn .bar:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked ~ .burger-btn .bar:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) {
  .burger-btn {
    display: none;
  }
  .site-nav {
    display: flex !important;
    position: static;
    padding: 0;
    border-top: none;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 24px;
    padding: 0;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 28px;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background-color: var(--accent-color);
  color: #FFFFFF;
  border: none;
}
.btn-outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.btn:hover {
  transform: translateY(-2px);
}
.w-full {
  width: 100%;
}

/* HERO SECTION: floating-cards */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 16px;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}
.hero-content h1 {
  margin-bottom: 24px;
}
.hero-content .subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.floating-cards-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 600px;
}
.floating-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: left;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  animation: float 4s ease-in-out infinite alternate;
  animation-delay: var(--delay);
}
.floating-card p {
  color: #FFFFFF;
  margin: 0;
  font-size: 15px;
}
.card-icon {
  font-size: 28px;
  line-height: 1;
}

@keyframes float {
  0% { transform: translateY(0) rotate(var(--rot)); }
  100% { transform: translateY(-12px) rotate(calc(var(--rot) + 1deg)); }
}

@media (min-width: 1024px) {
  .hero {
    padding: 120px 24px;
  }
  .floating-cards-container {
    position: absolute;
    inset: 0;
    max-width: none;
    pointer-events: none;
  }
  .floating-card {
    position: absolute;
    width: 300px;
    pointer-events: auto;
  }
  .floating-card:nth-child(1) {
    top: 15%;
    left: 8%;
  }
  .floating-card:nth-child(2) {
    bottom: 15%;
    right: 8%;
  }
  .floating-card:nth-child(3) {
    bottom: 10%;
    left: 12%;
  }
}

/* SECTION REVEAL ANIMATION */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

/* TESTIMONIALS SECTION (Wall with 3 items) */
.testimonial-wall {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .testimonial-wall {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonial-item {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.stars {
  color: #FFD700;
  font-size: 20px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  font-family: var(--main-font);
  font-weight: 700;
  color: #FFFFFF;
}
.testimonial-meta {
  font-size: 13px;
  color: rgba(240, 240, 240, 0.6);
}

/* STATS COUNTER SECTION */
.stats-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stat-item {
  padding: 32px;
  text-align: center;
}
.stat-num {
  --target: 100;
  font-family: var(--main-font);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 16px;
  animation: count-up 2s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 60%;
  counter-reset: n var(--count);
}
.stat-num::after {
  content: counter(n);
}
@keyframes count-up {
  from { --count: 0; }
  to { --count: var(--target); }
}
.stat-label {
  font-size: 15px;
  margin: 0;
}

/* EXPERT QUOTE SECTION */
.quote-section {
  text-align: center;
}
.quote-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 40px 16px;
}
.quote-mark {
  font-size: 6rem;
  font-family: var(--main-font);
  color: var(--accent-color);
  opacity: 0.3;
  line-height: 0.1;
  display: block;
  margin-bottom: 20px;
}
blockquote {
  font-family: var(--main-font);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.5;
  margin-bottom: 24px;
}
.quote-author strong {
  display: block;
  font-size: 18px;
  color: #FFFFFF;
}
.quote-author span {
  font-size: 14px;
  color: rgba(240, 240, 240, 0.6);
}

/* TOPIC OVERVIEW CARDS (4 elements) */
.topics-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.topic-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.topic-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.topic-card h3 {
  color: #FFFFFF;
}
.topic-card p {
  margin-bottom: 20px;
}
.topic-card ul {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}
.topic-card li {
  font-size: 14px;
  color: rgba(240, 240, 240, 0.8);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.topic-card li::before {
  content: "✓";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* ABOUT / VALUES SECTION (with bg-1.jpg) */
.values-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.values-content h2 {
  text-align: left;
}
.values-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  gap: 20px;
}
.value-icon {
  font-size: 28px;
  line-height: 1.2;
}
.value-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.values-image-container {
  width: 100%;
}
.values-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* CONTACT + FAQ SECTION */
.contact-faq-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: 56px;
}
@media (min-width: 1024px) {
  .contact-faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-info h3, .contact-form-container h3 {
  margin-bottom: 20px;
}
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.contact-details li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-details .icon {
  font-size: 24px;
}
.contact-details strong {
  display: block;
  color: #FFFFFF;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 14px;
  font-weight: 500;
}
.form-group input, .form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px;
  color: #FFFFFF;
  font-family: var(--alt-font);
  font-size: 15px;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 8px rgba(0, 80, 96, 0.4);
}
.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.checkbox-group input {
  width: auto;
  margin-top: 4px;
}

/* FAQ CONTAINER */
.faq-container {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 56px;
}
.faq-container h3 {
  text-align: center;
  margin-bottom: 40px;
}
.faq-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.faq-item {
  padding: 24px;
}
.faq-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #FFFFFF;
}
.faq-item p {
  font-size: 14px;
  margin: 0;
}

/* FOOTER */
footer {
  background: var(--secondary-color);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 16px;
  text-align: center;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo img {
  max-height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.footer-nav a {
  color: rgba(240, 240, 240, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: #FFFFFF;
}
.footer-copy {
  font-size: 13px;
  color: rgba(240, 240, 240, 0.5);
  margin: 0;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-nav {
    gap: 24px;
  }
}