@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap');

* {
  box-sizing: border-box;
}

:root {
  --primary: #D97706;
  --primary-dark: #B45309;
  --secondary: #0F766E;
  --accent: #DC2626;
  --text: #1C1917;
  --text-light: #57534E;
  --bg: #FFFBEB;
  --bg-secondary: #FEF3C7;
  --bg-dark: #292524;
  --white: #FFFFFF;
}

body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.row > * {
  padding: 0 1rem;
  width: 100%;
}

.col-md-4 { width: 100%; }
.col-md-6 { width: 100%; }
.col-md-8 { width: 100%; }
.col-lg-3 { width: 100%; }
.col-lg-4 { width: 100%; }
.col-lg-5 { width: 100%; }
.col-lg-6 { width: 100%; }
.col-lg-7 { width: 100%; }
.col-lg-8 { width: 100%; }

@media (min-width: 768px) {
  .col-md-4 { width: 33.333%; }
  .col-md-6 { width: 50%; }
  .col-md-8 { width: 66.666%; }
}

@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333%; }
  .col-lg-5 { width: 41.666%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333%; }
  .col-lg-8 { width: 66.666%; }
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: #0D5D57;
  border-color: #0D5D57;
  color: var(--white);
}

.navbar {
  padding: 1rem 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.navbar-nav {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.navbar-nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-link {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text);
  font-weight: 600;
  border-radius: 6px;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--bg-secondary);
}

.navbar-toggler {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.navbar-toggler span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
}

@media (min-width: 992px) {
  .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .navbar-toggler {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-image: url('../details/tep4j1.webp');
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.92) 0%, rgba(15, 118, 110, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.hero p {
  color: rgba(255,255,255,0.95);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero .btn-primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.hero .btn-primary:hover {
  background: var(--bg-secondary);
  border-color: var(--bg-secondary);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.125rem;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--white);
}

.card h4 {
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.card-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.stats-box {
  text-align: center;
  padding: 2rem;
}

.stats-box .number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-box h5 {
  margin-bottom: 0.5rem;
}

.stats-box p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.process-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.process-item:last-child {
  margin-bottom: 0;
}

.process-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.process-content h5 {
  margin-bottom: 0.5rem;
}

.process-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

.quote-block {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  border-left: 5px solid var(--primary);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.quote-block blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.quote-block cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background: var(--bg-secondary);
  border-color: var(--bg-secondary);
}

.contact-section {
  background: var(--bg-secondary);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-item span {
  color: var(--text-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid #E7E5E4;
  border-radius: 10px;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

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

.footer-title {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--white);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255,255,255,0.9);
}

.cookie-banner a {
  color: var(--primary);
}

@media (min-width: 768px) {
  .cookie-banner .container {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 6rem 0 4rem;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
}

.content-page {
  padding: 4rem 0;
}

.content-page h2 {
  margin: 2rem 0 1rem;
  font-size: 1.75rem;
}

.content-page p,
.content-page li {
  color: var(--text-light);
}

.content-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-page li {
  margin-bottom: 0.5rem;
}

.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
}

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

.team-card {
  text-align: center;
}

.team-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--primary);
}

.team-card h3 {
  margin-bottom: 0.5rem;
}

.team-card .role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.schedule-form {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.thank-you {
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you i {
  font-size: 5rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.gap-2 { gap: 1rem; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }

.decor-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0.1;
  z-index: 0;
}

@media (max-width: 767px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .section {
    padding: 3.5rem 0;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .row > * {
    margin-bottom: 1.5rem;
  }
  
  .row > *:last-child {
    margin-bottom: 0;
  }
}
