/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: #373a3c;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* === Colors === */
.highlight { color: #81be41; }
.script { font-family: 'Dancing Script', cursive; font-size: 1.4em; }

/* === Navigation === */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: background 0.3s;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 45px; width: auto; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a {
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: #6d6e70; transition: color 0.3s;
}
.nav-links a:hover { color: #81be41; }
.nav-social { display: flex; gap: 12px; }
.nav-social a { color: #6d6e70; transition: color 0.3s; }
.nav-social a:hover { color: #81be41; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: #373a3c; margin: 5px 0; transition: 0.3s; }

/* === Hero === */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 100px 20px 40px; position: relative;
  background: center center / cover no-repeat;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 0;
}
.hero-content, .hero-scroll { position: relative; z-index: 1; }
.hero-content h1 {
  font-size: 2.8rem; font-weight: 300; color: #fff;
  margin-bottom: 20px;
}
.hero-content h1 .highlight { font-size: 1em; }
.hero-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 600px;
  margin: 0 auto 40px; opacity: 1; transition: opacity 0.5s;
}
.hero-scroll { position: absolute; bottom: 30px; animation: bounce 2s infinite; }
.hero-scroll a { opacity: 0.6; transition: opacity 0.3s; }
.hero-scroll a:hover { opacity: 1; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* === Buttons === */
.btn {
  display: inline-block; padding: 12px 35px; font-size: 0.8rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
  border: none; cursor: pointer; transition: all 0.3s; text-align: center;
}
.btn-grey { background: #8a8a8a; color: #fff; }
.btn-grey:hover { background: #6d6e70; }
.btn-olive { background: #8a8a5a; color: #fff; }
.btn-olive:hover { background: #6d6e50; }
.btn-white { background: #fff; color: #81be41; }
.btn-white:hover { background: #f0f0f0; }
.btn-social {
  display: flex; align-items: center; gap: 15px;
  padding: 15px 30px; margin-bottom: 15px; width: 100%; max-width: 400px;
  font-size: 0.9rem; font-weight: 600; color: #fff;
}
.btn-linkedin { background: #0077b5; }
.btn-linkedin:hover { background: #005f8d; }
.btn-facebook { background: #3b5998; }
.btn-facebook:hover { background: #2d4373; }

/* === Instagram Section === */
#instagram {
  padding: 100px 20px; text-align: center;
  background: #fafaf8;
}
#instagram h2 { font-size: 2rem; font-weight: 300; color: #6d6e70; margin-bottom: 20px; }
#instagram p { max-width: 600px; margin: 0 auto 40px; color: #999; }
.instagram-cta {
  display: flex; align-items: center; justify-content: center; gap: 15px;
  font-size: 1rem; color: #6d6e70;
}
.instagram-link { transition: transform 0.3s; }
.instagram-link:hover { transform: scale(1.1); }

/* === Services === */
#offer { padding: 80px 0; background: #f4f6f2; }
#offer h2 { text-align: center; font-size: 2rem; font-weight: 300; color: #373a3c; margin-bottom: 60px; }

.service-block {
  display: flex; align-items: stretch; margin-bottom: 0;
  background: #fff;
}
.service-block:nth-child(even) { flex-direction: row-reverse; }
.service-image {
  flex: 0 0 45%; min-height: 400px;
  background-size: cover; background-position: center;
}
.service-content {
  flex: 1; padding: 40px 50px;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start;
}
.service-category {
  display: inline-block !important; background: #5a7a3a; color: #fff;
  padding: 6px 16px; font-size: 0.75rem; font-weight: 600;
  margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase;
  border-radius: 3px;
}
.service-content h3 { font-size: 1.8rem; font-weight: 300; margin-bottom: 20px; color: #373a3c; }
.service-content p { color: #6d6e70; margin-bottom: 15px; font-size: 0.95rem; }
.service-roles { font-weight: 600; color: #373a3c; }

/* === Team === */
#team { padding: 80px 0; background: #f8faf6; }
#team h2 { text-align: center; font-size: 2rem; font-weight: 300; color: #373a3c; margin-bottom: 60px; }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 40px; max-width: 1000px; margin: 0 auto;
}
.team-card { text-align: center; }
.team-img-wrapper {
  position: relative; width: 180px; height: 180px;
  margin: 0 auto 15px; border-radius: 50%; overflow: hidden;
}
.team-img-main, .team-img-private {
  width: 180px; height: 180px; border-radius: 50%;
  object-fit: cover; transition: opacity 0.4s;
}
.team-img-main {
  filter: grayscale(100%); transition: filter 0.4s, opacity 0.4s;
}
.team-img-private {
  position: absolute; top: 0; left: 0;
  opacity: 0;
}
.team-card:hover .team-img-main { filter: grayscale(0%); opacity: 0; }
.team-card:hover .team-img-private { opacity: 1; }
.team-placeholder {
  width: 180px; height: 180px; border-radius: 50%;
  background: #81be41; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 600;
}
.team-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 3px; }
.team-card .team-role { color: #81be41; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.team-card p { font-size: 0.85rem; color: #999; }

/* === Recruit === */
#recruit {
  padding: 80px 20px; text-align: center;
  background: #81be41; color: #fff;
}
#recruit h2 { font-size: 2rem; font-weight: 300; margin-bottom: 10px; }
#recruit .highlight { color: #fff; text-decoration: underline; }
#recruit h3 { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; }

/* === References === */
#references { padding: 80px 0; background: #f5f5f0; }
#references h2 { text-align: center; font-size: 2rem; font-weight: 300; color: #373a3c; margin-bottom: 60px; }
.references-grid {
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.reference-card {
  display: flex; flex-direction: column;
  padding: 40px; background: #fff; border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  border-top: 3px solid #81be41;
  transition: transform 0.3s, box-shadow 0.3s;
}
.reference-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}
.reference-logo {
  text-align: center; margin-bottom: 25px;
  height: 50px; display: flex; align-items: center; justify-content: center;
}
.reference-logo img {
  max-height: 45px; max-width: 160px; object-fit: contain;
  filter: grayscale(30%); opacity: 0.8; transition: all 0.3s;
}
.reference-card:hover .reference-logo img { filter: grayscale(0%); opacity: 1; }
.reference-logo h4 { font-size: 1.4rem; color: #373a3c; }
.reference-text { flex: 1; position: relative; }
.quote-mark {
  font-size: 4rem; color: #81be41; opacity: 0.3;
  line-height: 1; margin-bottom: -15px; font-family: Georgia, serif;
}
.reference-text blockquote {
  font-size: 1rem; color: #555; font-style: italic;
  margin-bottom: 25px; line-height: 1.8;
  padding-left: 5px; border-left: 2px solid #e0e0d8;
}
.reference-contact {
  display: flex; align-items: center; gap: 12px;
  padding-top: 15px; border-top: 1px solid #f0f0ec;
}
.contact-info { }
.reference-contact .contact-name { font-weight: 600; font-size: 0.9rem; color: #373a3c; }
.reference-contact .contact-company { font-size: 0.8rem; color: #81be41; font-weight: 600; }

/* === Network === */
#network {
  display: flex; min-height: 400px;
}
.network-left {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; padding: 60px;
  background: #f8faf6;
}
.network-left h2 { font-size: 1.8rem; font-weight: 300; color: #6d6e70; margin-bottom: 30px; }
.network-right {
  flex: 1; overflow: hidden;
}
.network-right img { width: 100%; height: 100%; object-fit: cover; }

/* === Footer / Contact === */
#contact {
  background: #81be41; color: #fff; padding: 60px 0;
}
.footer-container {
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  display: flex; gap: 60px; align-items: flex-start;
}
.footer-info { flex: 1; }
.footer-info h2.script { font-family: 'Dancing Script', cursive; font-size: 2.5rem; margin-bottom: 30px; }
.footer-info p { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-info a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.5); }
.footer-info a:hover { border-color: #fff; }

.footer-form { flex: 1; background: #f5f5f5; padding: 40px; color: #373a3c; }
.footer-form h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.form-subtitle { color: #81be41; font-style: italic; margin-bottom: 20px; }
.form-row { display: flex; gap: 15px; margin-bottom: 15px; }
.form-row input { flex: 1; }
#contact-form input,
#contact-form textarea {
  width: 100%; padding: 12px 15px; border: 1px solid #ddd;
  font-family: 'Open Sans', sans-serif; font-size: 0.9rem;
  margin-bottom: 15px; transition: border-color 0.3s;
}
#contact-form select {
  width: 100%; padding: 12px 15px; border: 1px solid #ddd;
  font-family: 'Open Sans', sans-serif; font-size: 0.9rem;
  margin-bottom: 15px; transition: border-color 0.3s;
  background: #fff; color: #373a3c; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236d6e70' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
  cursor: pointer;
}
#contact-form select:focus { border-color: #81be41; outline: none; }
#contact-form input:focus,
#contact-form textarea:focus { border-color: #81be41; outline: none; }
#contact-form textarea { resize: vertical; }
.captcha-box {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 15px; padding: 12px 15px;
  background: #eef5e6; border: 1px solid #d4e4c4; border-radius: 4px;
}
.captcha-box label {
  font-size: 0.85rem; font-weight: 600; color: #373a3c; white-space: nowrap;
}
.captcha-box input {
  width: 80px !important; margin-bottom: 0 !important;
  text-align: center; padding: 8px !important;
}
.form-status {
  margin-top: 10px; font-size: 0.9rem; font-weight: 600;
}
.form-status.success { color: #81be41; }
.form-status.error { color: #d9534f; }

/* === Responsive === */
@media (max-width: 900px) {
  .service-block, .service-block:nth-child(even) { flex-direction: column; }
  .service-image { min-height: 250px; }
  .footer-container { flex-direction: column; }
  #network { flex-direction: column; }
  .network-right { min-height: 300px; }
  .reference-card { flex-direction: column; text-align: center; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 70px; left: 0; right: 0; background: #fff;
    padding: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    gap: 15px;
  }
  .nav-links.active { display: flex; }
  .nav-social { display: none; }
  .nav-toggle { display: block; }
  .hero-content h1 { font-size: 1.8rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .form-row { flex-direction: column; gap: 0; }
  .service-content { padding: 25px; }
}
