/*
  =================================
  CELO BUSINESS SOLUTIONS - GLOBAL STYLESHEET
  VERSION: DARK THEME (Corrected Navbar)
  =================================
*/

/* --- 1. Global & Reset Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-accent: #9eeb47;
  --hover-accent: #5d9232;
  --dark-bg: #152215;
  --light-bg: #f4f8f4;
  --text-on-dark: #f0f0f0;
  --text-on-light: #2c3e2c;
  --footer-bg: #334c33;
  --section-bg: rgba(137, 199, 88, 0.1);
  --section-border: rgba(137, 199, 88, 0.2);
}

body {
  font-family: 'Arial', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-on-dark);
  scroll-behavior: smooth;
  padding-top: 100px;
}

.homebg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.8;
}

.homebg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* --- 2. Shared Components (Header, Footer, Buttons, etc.) --- */

/* ======================================================= */
/* START: CORRECTED Header/Navbar Section for Readability  */
/* ======================================================= */
header {
  position: fixed; top: 0; left: 0; width: 100%; padding: 3px 40px 3px 20px; display: flex; justify-content: space-between; align-items: center; background-color: transparent; z-index: 1000; transition: all 0.3s ease;
}
header.scrolled {
  background-color: rgba(21, 34, 21, 0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); padding: 0px 40px 0px 20px;
}
.logo a img { transition: transform 0.3s ease, filter 0.3s ease; height: 80px; }
.logo a:hover img { transform: scale(1.05); filter: brightness(1.2); }
.hamburger { display: none; flex-direction: column; cursor: pointer; z-index: 1001; }
.hamburger div { width: 25px; height: 3px; background-color: white; margin: 4px 0; transition: all 0.3s ease; }
.hamburger.active div:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.hamburger.active div:nth-child(2) { opacity: 0; }
.hamburger.active div:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
nav { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-right: 30px; }

/* UPDATED: Default link color is now white for high contrast */
nav a {
  color: var(--text-on-dark);
  margin: 0 10px; text-decoration: none; font-weight: bold; position: relative; padding: 5px 10px; transition: all 0.3s ease;
}
/* UPDATED: Hover color is now the green accent color */
nav a:not(.active):hover {
  color: var(--primary-accent);
}
/* UPDATED: Underline now matches the green hover color */
nav a:not(.active):after {
  content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--primary-accent); transition: width 0.3s ease;
}

nav a:not(.active):hover:after {
  width: 100%;
}
/* This "active" style is correct and remains unchanged */
nav a.active {
  background-color: var(--primary-accent); color: var(--dark-bg); padding: 5px 15px; border-radius: 25px; box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* ======================================================= */
/* END: CORRECTED Header/Navbar Section                    */
/* ======================================================= */


/* Unified Section Styles */
.section {
  background: var(--section-bg); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid var(--section-border); padding: 40px; margin-bottom: 30px; border-radius: 15px; opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; box-shadow: 0 8px 30px rgba(0,0,0,0.25); position: relative; overflow: hidden;
}
.section.visible { opacity: 1; transform: translateY(0); }
.section h2 {
  position: relative; margin-bottom: 30px; padding-bottom: 15px; text-align: center; font-size: 2.5rem; color: var(--primary-accent); text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.section h2:after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: rgba(54, 95, 22, 0.7);
}

/* Floating Buttons */
.floating-btn {
  position: fixed; bottom: 100px; right: 30px; background: var(--primary-accent); color: var(--dark-bg); border: none; border-radius: 50px; padding: 15px 25px; font-weight: bold; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,0.3); z-index: 999; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease;
}
.floating-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0,0,0,0.4); background: var(--hover-accent); }
.back-to-top {
  position: fixed; bottom: 180px; right: 30px; width: 50px; height: 50px; background: rgba(137, 199, 88, 0.8); color: var(--dark-bg); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 998; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-accent); transform: translateY(-3px); }

/* Footer */
footer { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; text-align: left; gap: 30px; padding: 40px; background-color: var(--footer-bg); position: relative; }
footer:before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--hover-accent), var(--primary-accent), var(--hover-accent)); }
.footer-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 15px; }
.footer-logos a { display: inline-block; transition: all 0.3s ease; }
.footer-logos a:hover { transform: translateY(-5px); }
.footer-logos a img { height: 45px; transition: transform 0.3s ease; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); }
.footer-logos a:hover img { transform: scale(1.15); }
.social-icons { margin-top: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
.social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; transition: all 0.3s ease; }
.social-icons a:hover { background: rgba(137, 199, 88, 0.3); transform: translateY(-3px); }
.social-icons a img { height: 22px; transition: transform 0.3s ease; }
.social-icons a:hover img { transform: scale(1.15); }


/* --- 3. Page-Specific Styles --- */

/* --- Home Page (index.html) --- */
.hero-section { min-height: calc(100vh - 120px); display: flex; justify-content: space-between; align-items: center; gap: 60px; padding: 50px; flex-wrap: wrap; opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.hero-section.visible { opacity: 1; transform: translateY(0); }
.hero-content { flex: 1 1 50%; text-align: center; }
.hero-content h2 { font-size: 3.5rem; color: #ffffff; padding: 5px 10px; }
.hero-content h2 span { background-color: var(--primary-accent); color: var(--dark-bg); padding: 2px 8px; border-radius: 5px; }
.tagline { margin-top: 20px; font-size: 1.4rem; color: var(--primary-accent); font-weight: bold; }
.description { max-width: 700px; margin: 20px auto; font-size: 1.1rem; line-height: 1.6; }
.hero-highlights { display: flex; justify-content: center; gap: 15px; margin-top: 30px; flex-wrap: wrap; }
.highlight-item { display: flex; align-items: center; gap: 10px; background-color: rgba(255, 255, 255, 0.08); padding: 10px 20px; border-radius: 50px; font-size: 1rem; transition: all 0.3s ease; }
.highlight-item:hover { background-color: var(--primary-accent); color: var(--dark-bg); transform: translateY(-3px); }
.highlight-item i { color: var(--primary-accent); transition: color 0.3s ease; }
.highlight-item:hover i { color: var(--dark-bg); }
.hero-cta { display: inline-block; margin-top: 35px; padding: 12px 35px; background-color: var(--primary-accent); color: var(--dark-bg); border-radius: 50px; text-decoration: none; font-weight: bold; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(137, 199, 88, 0.2); }
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(137, 199, 88, 0.4); background-color: var(--hover-accent); }
.carousel { flex: 1 1 45%; position: relative; max-width: 500px; margin-left: 10px; background-color: var(--section-bg); backdrop-filter: blur(8px); border-radius: 20px; padding: 40px 30px; text-align: center; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.25); border: 1px solid var(--section-border); }
.carousel h3 { margin-bottom: 20px; font-size: 1.4rem; text-align: center; color: var(--primary-accent); }
.carousel-track { display: flex; transition: transform 0.5s ease-in-out; width: 100%; }
.carousel-slide { min-width: 100%; text-align: center; padding: 0 10px; }
.carousel-slide img { width: 100%; border-radius: 10px; transition: all 0.3s ease; }
.carousel-slide:hover img { transform: scale(1.03); filter: brightness(1.1); }
.carousel-caption { margin-top: 10px; font-size: 1rem; color: var(--text-on-dark); line-height: 1.5; }
.arrow { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2rem; color: var(--primary-accent); background: none; border: none; cursor: pointer; z-index: 1; transition: all 0.3s ease; }
.arrow:hover { color: white; transform: translateY(-50%) scale(1.2); }
.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

/* --- About Page (about.html) --- */
.flex-layout { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: space-between; }
.flex-item-text-large { flex: 1 1 500px; min-width: 280px; font-size:1.1rem; line-height:1.8; }
.flex-item-media-medium { flex: 1 1 400px; min-width: 260px; }
.flex-item-text-half { flex: 1 1 55%; }
.flex-item-media-half { flex: 1 1 40%; text-align: center; }
.flex-item-info-half { flex: 1 1 45%; font-size: 1rem; color: white; line-height: 1.7; }
.flex-item-map-half { flex: 1 1 50%; }
.full-width-center { width: 100%; text-align: center; }
.get-directions-btn { display: inline-block; background-color: var(--primary-accent); color: var(--dark-bg); padding: 12px 25px; border-radius: 30px; font-weight: bold; text-decoration: none; transition: all 0.3s ease; }
.get-directions-btn:hover { background-color: var(--hover-accent); transform: translateY(-2px); }
.slideshow-container { position: relative; width: 100%; max-width: 400px; height: 300px; margin: auto; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.mySlides { display: none; width: 100%; height: 100%; }
.mySlides img { width: 100%; height: 100%; object-fit: cover; }
.prev, .next { cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; margin-top: -22px; color: white; font-weight: bold; font-size: 18px; transition: 0.6s ease; border-radius: 0 3px 3px 0; user-select: none; background-color: rgba(0,0,0,0.4); }
.next { right: 0; border-radius: 3px 0 0 3px; }
.prev:hover, .next:hover { background-color: rgba(0,0,0,0.8); }
.slide-caption { position: absolute; bottom: 0; width: 100%; text-align: center; color: white; font-weight: bold; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); padding: 20px 8px 10px; font-size: 0.9rem; }
.dot-container { text-align: center; margin-top: 15px; }
.dot { cursor: pointer; height: 12px; width: 12px; margin: 0 4px; background-color: #bbb; border-radius: 50%; display: inline-block; transition: background-color 0.6s ease; }
.dot.active, .dot:hover { background-color: var(--primary-accent); }
.fade { animation-name: fade; animation-duration: 1.5s; }
@keyframes fade { from {opacity: .4} to {opacity: 1} }
.values { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; text-align: center; }
.values div { max-width: 250px; background: rgba(137, 199, 88, 0.05); border-radius: 12px; padding: 25px 20px; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.1); border: 1px solid rgba(137, 199, 88, 0.1); }
.values div:hover { transform: translateY(-5px); background: rgba(137, 199, 88, 0.15); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.values img { height: 180px;  margin-left: -59px; /* Align to the left */ margin-right: 0; margin-bottom: 15px; display: block; transition: all 0.3s ease; }
.values img:hover { transform: scale(1.05); filter: brightness(1.15); }
.values p, .values h3 { color: var(--text-on-dark); }
.values h3 { color: var(--primary-accent); }
.faq-wrapper { max-width: 800px; margin: 0 auto; background: var(--light-bg); border-radius: 15px; padding: 30px; box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.faq-item { border-bottom: 1px solid #d5e5d5; padding: 15px 0; transition: all 0.3s ease; }
.faq-item:hover { background: rgba(137, 199, 88, 0.1); }
.faq-item:last-child { border-bottom: none; }
.faq-question { background: none; border: none; width: 100%; text-align: left; font-size: 1.1rem; font-weight: bold; color: var(--text-on-light); cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 5px 0; transition: color 0.3s ease; }
.faq-question:hover { color: #5a8a3a; }
.faq-answer { padding: 15px 5px 0; display: none; font-size: 0.95rem; color: var(--text-on-light); line-height: 1.7; animation: fadeIn 0.4s ease-out; }
.faq-answer a { color: #5a8a3a; font-weight: bold; text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.faq-icon { font-size: 1.2rem; transition: transform 0.3s ease, color 0.3s ease; color: var(--primary-accent); }
.faq-icon.rotate { transform: rotate(180deg); color: #5a8a3a; }
#page-about .testimonials { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; margin-top: 40px; }
.testimonial-card { background: rgba(137, 199, 88, 0.05); padding: 25px; border-radius: 15px; max-width: 350px; transition: all 0.3s ease; box-shadow: 0 6px 15px rgba(0,0,0,0.1); border: 1px solid rgba(137, 199, 88, 0.15); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.2); background: rgba(137, 199, 88, 0.1); }
.testimonial-content { font-style: italic; margin-bottom: 15px; line-height: 1.7; color: #e0e0e0; }
.testimonial-author { display: flex; align-items: center; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; margin-right: 15px; object-fit: cover; }
.author-info h4 { margin-bottom: 5px; color: var(--primary-accent); }
.author-info p { font-size: 0.9rem; opacity: 0.8; }
.stats-container { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 30px; max-width: 1000px; margin: 40px auto 0 auto; }
.stat-item { flex: 1 1 200px; text-align: center; }
.stat-number { font-size: 3.5rem; font-weight: bold; color: var(--primary-accent); margin-bottom: 10px; transition: all 0.5s ease; text-shadow: 0 2px 5px rgba(137, 199, 88, 0.3); }
.stat-label { font-size: 1.1rem; color: white; }

/* --- Offered Solutions Page (offered.html) --- */
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.solution-card { background: rgba(137, 199, 88, 0.05); border: 1px solid var(--section-border); padding: 25px; border-radius: 12px; transition: all 0.3s ease; box-shadow: 0 6px 15px rgba(0,0,0,0.1); display: flex; flex-direction: column; height: 100%; }
.solution-card:hover { transform: translateY(-5px); background: rgba(137, 199, 88, 0.15); box-shadow: 0 12px 25px rgba(0,0,0,0.2); }
.solution-card img { width: 100%; height: 180px; object-fit: contain; border-radius: 8px; margin-bottom: 15px; background-color: var(--section-bg); padding: 10px; transition: all 0.3s ease; }
.solution-card:hover img { transform: scale(1.05); filter: brightness(1.15); }
.solution-card h3 { color: var(--primary-accent); margin-bottom: 15px; font-size: 1.4rem; min-height: 60px; display: flex; align-items: center; }
.solution-card p { flex-grow: 1; margin-bottom: 15px; line-height: 1.6; color: #e0e0e0; }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.why-us-item { display: flex; align-items: flex-start; gap: 15px; }
.why-us-item i { font-size: 2rem; color: var(--primary-accent); margin-top: 5px; width: 40px; text-align: center; }
.why-us-item div { flex: 1; }
.why-us-item h3 { color: var(--primary-accent); margin-bottom: 10px; font-size: 1.3rem; }
.why-us-item p { line-height: 1.6; color: #e0e0e0; }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 40px; text-align: center; }
.industry-item { background: rgba(137, 199, 88, 0.05); padding: 20px; border-radius: 12px; transition: all 0.3s ease; border: 1px solid var(--section-border); }
.industry-item:hover { transform: translateY(-5px); background: rgba(137, 199, 88, 0.15); }
.industry-item i { font-size: 3rem; color: var(--primary-accent); margin-bottom: 15px; }
.industry-item h4 { font-size: 1.1rem; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; position: relative; }
#page-offered .process-step { background: rgba(21, 34, 21, 0.2); padding: 25px; border-radius: 12px; text-align: center; border-left: 5px solid var(--primary-accent); transition: all 0.3s ease; }
#page-offered .process-step:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
#page-offered .process-step h3 { color: var(--primary-accent); margin-bottom: 15px; font-size: 1.4rem; }
#page-offered .process-step p { line-height: 1.6; color: #e0e0e0; }
.cta-section p { max-width: 700px; margin: 0 auto 30px; font-size: 1.1rem; line-height: 1.6; text-align: center; }
.cta-button { background: var(--primary-accent); color: var(--dark-bg); border: none; border-radius: 50px; padding: 15px 35px; font-weight: bold; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,0.3); text-decoration: none; font-size: 1.1rem; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
.cta-button:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 25px rgba(0,0,0,0.4); background: var(--hover-accent); }

/* --- Careers Page (careers.html) --- */
.hero-section-careers h1, .job-alert h2 { color: var(--text-on-dark); }
.hero-section-careers { text-align: center; margin-bottom: 30px; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.hero-content-careers { position: relative; z-index: 2; padding: 20px; max-width: 800px; margin: 0 auto; }
.hero-section-careers h1 { font-size: 2.8rem; margin-bottom: 20px; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
.hero-section-careers p { font-size: 1.2rem; margin-bottom: 30px; }
.job { background: rgba(137, 199, 88, 0.05); border: 1px solid var(--section-border); border-radius: 10px; padding: 30px; margin-bottom: 25px; transition: all 0.3s ease; box-shadow: 0 6px 15px rgba(0,0,0,0.1); position: relative; }
.job:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.2); background: rgba(137, 199, 88, 0.1); }
.job h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-on-dark); display: flex; align-items: center; }
.job h3 i { margin-right: 10px; color: var(--primary-accent); }
.job p { margin-bottom: 15px; line-height: 1.7; color: #e0e0e0; }
.job-details { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 15px; }
.detail-item { display: flex; align-items: center; font-size: 0.9rem; }
.detail-item i { margin-right: 8px; color: var(--primary-accent); }
.job-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tag { background-color: var(--primary-accent); color: var(--dark-bg); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }
.view-details-btn { display: inline-block; margin-top: 20px; background: none; border: 1px solid var(--primary-accent); color: var(--primary-accent); padding: 8px 18px; border-radius: 20px; cursor: pointer; transition: all 0.3s ease; font-weight: bold; }
.view-details-btn:hover { background-color: var(--primary-accent); color: var(--dark-bg); }
.job.open .view-details-btn { background-color: var(--primary-accent); color: var(--dark-bg); }
.job-full-details { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; }
.job.open .job-full-details { padding-top: 25px; }
.details-content { border-top: 1px solid var(--section-border); padding-top: 25px; }
.details-content h4 { color: var(--primary-accent); margin-bottom: 10px; font-size: 1.1rem; }
.details-content ul { list-style-type: disc; list-style-position: inside; padding-left: 10px; margin-bottom: 20px; color: #e0e0e0; }
.details-content li { margin-bottom: 8px; line-height: 1.6; }
.job-application-actions { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--section-border); display: flex; flex-wrap: wrap; gap: 15px; align-items: center; }
.job-application-actions h4 { flex-basis: 100%; margin-bottom: 5px; color: var(--text-on-dark); }
.apply-btn-form, .apply-btn-email { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 25px; border-radius: 30px; font-weight: bold; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; font-size: 0.95rem; }
.apply-btn-form { background-color: var(--primary-accent); color: var(--dark-bg); }
.apply-btn-form:hover { background-color: var(--hover-accent); transform: translateY(-2px); }
.apply-btn-email { background-color: transparent; color: var(--primary-accent); border: 2px solid var(--primary-accent); }
.apply-btn-email:hover { background-color: var(--primary-accent); color: var(--dark-bg); transform: translateY(-2px); }

.job-alert { display: flex; flex-direction: column; align-items: center; text-align: center; }
.job-alert p { margin-bottom: 25px; font-size: 1.1rem; }
.email-container { display: flex; justify-content: center; margin-bottom: 15px; position: relative; max-width: 400px; width: 100%; }
.email-input { width: 100%; padding: 12px 20px; border-radius: 30px; border: 1px solid rgba(21,34,21,0.5); font-size: 1rem; outline: none; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.email-button { position: absolute; right: 5px; top: 5px; background-color: var(--dark-bg); color: var(--primary-accent); border: none; border-radius: 25px; padding: 7px 15px; cursor: pointer; transition: all 0.3s ease; }
.email-button:hover { background-color: #2c3e2c; }
.apply-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background-color: var(--primary-accent); color: var(--dark-bg); padding: 15px 40px; border-radius: 30px; font-weight: bold; text-decoration: none; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); cursor: pointer; border: none; }
.apply-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); background-color: var(--hover-accent); }
.job-alert-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; }
.job-alert-actions .email-link { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 38px; border: 2px solid var(--primary-accent); background-color: transparent; color: var(--primary-accent); border-radius: 30px; font-weight: bold; text-decoration: none; font-size: 1.1rem; transition: all 0.3s ease; }
.job-alert-actions .email-link:hover { background-color: var(--primary-accent); color: var(--dark-bg); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

.hiring-process .process-timeline { display: flex; justify-content: space-between; position: relative; margin-top: 50px; flex-wrap: wrap; gap: 20px; }
.hiring-process .process-timeline::before { content: ''; position: absolute; top: 40px; left: 5%; right: 5%; height: 4px; background-color: rgba(137, 199, 88, 0.2); z-index: 1; }
.hiring-process .process-step { text-align: center; flex: 1; min-width: 150px; position: relative; z-index: 2; padding-top: 100px; }
.process-icon { position: relative; width: 80px; height: 80px; background-color: var(--primary-accent); color: var(--dark-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; border: 4px solid var(--dark-bg); transition: all 0.3s ease; margin: 0 auto; }
.process-step:hover .process-icon { transform: scale(1.1); box-shadow: 0 0 20px rgba(137, 199, 88, 0.5); }
.step-number { position: absolute; top: -10px; right: -10px; background: var(--dark-bg); color: var(--text-on-dark); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; z-index: 3; border: 2px solid var(--primary-accent); }
.hiring-process .process-step h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text-on-dark); }
.hiring-process .process-step p { font-size: 0.9rem; line-height: 1.5; color: #e0e0e0; }
.testimonial-grid, .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.benefit-card { background: rgba(137, 199, 88, 0.05); border: 1px solid var(--section-border); border-radius: 10px; padding: 30px; transition: all 0.3s ease; text-align: center; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); background: rgba(137, 199, 88, 0.1); }
.testimonial-text { font-style: italic; margin-bottom: 20px; position: relative; }
.testimonial-text::before { content: '“'; font-size: 2.5rem; color: var(--primary-accent); opacity: 0.5; position: absolute; top: -15px; left: -20px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background-color: var(--primary-accent); margin-right: 15px; display: flex; align-items: center; justify-content: center; color: var(--dark-bg); font-weight: bold; font-size: 1.2rem; }
.benefit-icon { font-size: 2.5rem; color: var(--primary-accent); margin-bottom: 20px; }
.benefit-card h3 { margin-bottom: 15px; color: var(--text-on-dark); }
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.8); z-index: 10000; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.modal.active { display: flex; opacity: 1; }
.modal-content { background-color: var(--light-bg); color: var(--text-on-light); padding: 30px; border-radius: 10px; max-width: 500px; width: 90%; position: relative; transform: translateY(20px); transition: transform 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.modal.active .modal-content { transform: translateY(0); }
.close-modal { position: absolute; top: 15px; right: 15px; font-size: 1.5rem; cursor: pointer; color: var(--text-on-light); transition: all 0.3s ease; }
.close-modal:hover { color: var(--primary-accent); transform: rotate(90deg); }
.modal h2 { margin-bottom: 20px; color: var(--text-on-light); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: bold; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border-radius: 5px; border: 1px solid #d5e5d5; font-size: 1rem; background: #fff; color: var(--text-on-light); }
.form-group textarea { min-height: 100px; resize: vertical; }
.submit-btn { background-color: var(--primary-accent); color: var(--dark-bg); border: none; padding: 12px 25px; border-radius: 5px; font-weight: bold; cursor: pointer; transition: all 0.3s ease; }
.submit-btn:hover { background-color: var(--hover-accent); }

/* --- New styles for Email Modal --- */
.copy-field {
  display: flex;
  align-items: center;
  gap: 10px;
}
.copy-field input {
  background-color: #f0f0f0 !important;
  cursor: text;
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.copy-btn {
  padding: 12px 15px;
  background-color: var(--dark-bg);
  color: white;
  border: 1px solid var(--dark-bg);
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  border-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  flex-shrink: 0;
}
.copy-btn:hover {
  background-color: #2c3e2c;
}
.copy-btn.copied {
  background-color: var(--primary-accent);
  color: var(--dark-bg);
  border-color: var(--primary-accent);
}

/* --- Contact Page (contact.html) --- */
.title h1 { font-size: 2.8rem; text-align: center; color: var(--primary-accent); text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
#page-contact .intro-text {
  max-width: 800px;
  margin: -10px auto 40px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e0e0e0;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  margin-bottom: 30px;
  align-items: flex-start;
}
.contact-container.visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-form-container {
  flex: 2 1 450px;
  min-width: 300px;
}
.contact-info-container {
  flex: 1 1 350px;
  min-width: 300px;
}
.contact-form {
  background-color: var(--light-bg);
  color: var(--text-on-light);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.contact-info {
  padding: 40px;
  border-radius: 15px;
}
.contact-form h2, .contact-info h2 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: left;
}
.form-heading {
  color: var(--text-on-light);
}
.info-heading {
  color: var(--primary-accent);
}
.contact-method { margin-bottom: 30px; }
.contact-method h3 { color: var(--primary-accent); margin-bottom: 15px; font-size: 1.3rem; display: flex; align-items: center; }
.contact-method h3 i { margin-right: 10px; }
.contact-detail { display: flex; align-items: center; margin-bottom: 10px; color: var(--text-on-dark); transition: all 0.3s ease; }
.contact-detail:hover { color: var(--hover-accent); transform: translateX(5px); }
.contact-detail i { margin-right: 10px; color: var(--primary-accent); width: 20px; text-align: center; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: var(--primary-accent); color: var(--dark-bg); border-radius: 50%; transition: all 0.3s ease; }
.social-links a:hover { background-color: var(--hover-accent); transform: translateY(-3px) scale(1.1); }
.office-hours p { margin-bottom: 8px; display: flex; align-items: center; }
.location-content { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; justify-content: space-between; }
.location-info { flex: 1; min-width: 300px; }
.location-info h3 { color: var(--primary-accent); margin-bottom: 20px; font-size: 1.5rem; }
.map-container { flex: 1; min-width: 300px; height: 300px; border-radius: 15px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.map-container iframe { width: 100%; height: 100%; border: none; }
.directions-btn { display: inline-block; background-color: var(--primary-accent); color: var(--dark-bg); padding: 12px 25px; border-radius: 30px; font-weight: bold; text-decoration: none; margin-top: 20px; transition: all 0.3s ease; }
.directions-btn:hover { background-color: var(--hover-accent); transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }

/* --- Thank You Page (thank-you.html) --- */
#page-thank-you { background-color: #1e2503; color: white; text-align: center; padding: 50px 20px; }
.thank-you-container { max-width: 600px; margin: 0 auto; background-color: #8aa523; padding: 40px; border-radius: 10px; }
.thank-you-container h1 { color: #d0ff2f; margin-bottom: 20px; }
.home-btn { display: inline-block; background-color: #d0ff2f; color: #1e2503; padding: 12px 30px; border-radius: 30px; font-weight: bold; text-decoration: none; margin-top: 20px; }


/* --- 4. Responsive Media Queries --- */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav { position: fixed; top: 80px; right: 0; background-color: #2c3e2c; flex-direction: column; align-items: flex-start; padding: 20px; gap: 15px; transform: translateX(100%); transition: transform 0.3s ease; width: 250px; height: auto; margin-right: 0; border-top-left-radius: 15px; border-bottom-left-radius: 15px; box-shadow: -2px 2px 10px rgba(0,0,0,0.4); z-index: 1002; }
  nav.active { transform: translateX(0); }
  nav a.active { background-color: var(--primary-accent); color: var(--dark-bg); box-shadow: none; }
  body { padding-top: 80px; }
  header { padding: 3px 20px 3px 10px; }
  .logo a img { height: 80px; }
  main.container { padding: 30px 15px; }
  .section { padding: 30px 20px; }
  footer { flex-direction: column; align-items: center; text-align: center; padding: 30px 20px; }
  #ai-chat-btn { right: 20px; bottom: 20px; }
  .floating-btn { right: 20px; bottom: 90px; padding: 12px 20px; }
  .back-to-top { right: 20px; bottom: 155px; width: 45px; height: 45px; }
  #ai-chat-widget { right: 10px; left: 10px; bottom: 90px; width: auto; max-width: none; height: calc(100vh - 120px); max-height: none; }
  /* Page specific responsive */
  .hero-section { flex-direction: column; align-items: center; text-align: center; padding: 30px 20px; }
  .hero-content { flex: 1 1 100%; }
  .hero-content h2 { font-size: 2.4rem; }
  .carousel { margin-left: 0; max-width: 90%; width: 100%; }
  .slideshow-container { height: 250px; }
  .hero-section-careers { min-height: auto; padding: 60px 20px; }
  .hero-section-careers h1 { font-size: 2.2rem; }
  .hiring-process .process-timeline { flex-direction: column; align-items: flex-start; }
  .hiring-process .process-timeline::before { top: 20px; left: 38px; right: auto; width: 4px; height: calc(100% - 40px); }
  .hiring-process .process-step { flex-basis: auto; padding-top: 0; padding-left: 100px; margin-bottom: 40px; text-align: left; width: 100%; min-width: 0; }
  .process-icon { position: absolute; top: 0; left: 0; margin: 0; }
  .title h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  header { padding: 3px 20px 3px 10px; }
  .logo a img { height: 80px; }
  .section h2, .hero-section h2, .hero-section-careers h1, .title h1 { font-size: 1.8rem; }
  .hero-content h2 {font-size: 2rem;}
  .stat-number { font-size: 2.5rem; }
  .slideshow-container { height: 200px; }
  .dot { height: 10px; width: 10px; }
  .solution-card h3 { min-height: auto; font-size: 1.3rem; }
}