/* --- 1. FONTS & VARIABLES --- */
:root {
  --primary-color: #f7b72f; /* The signature gold/yellow from the site */
  --secondary-color: #25262e; /* Dark gray for text and backgrounds */
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f6f6f6;
  --font-main: 'Lato', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Montserrat:wght@500;700&family=Open+Sans&display=swap');

/* --- 2. RESET & BASE STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--secondary-color);
  background-color: var(--gray-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

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

/* --- 3. HEADER & NAVIGATION --- */
header.top_panel {
  background: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.main_menu ul {
  display: flex;
  gap: 20px;
}

.main_menu a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
}

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

/* --- 4. HERO SECTION --- */
.hero_slider {
  background: linear-gradient(rgba(12, 12, 14, 0.8), rgba(12, 12, 14, 0.8)), 
              url('../images/hero-bg.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero_slider h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
}

/* --- 5. GRID LAYOUTS (Benefits & Services) --- */
.section_title {
  text-align: center;
  padding: 60px 0 40px;
}

.benefits_grid, .services_overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding-bottom: 60px;
}

.service_card {
  background: var(--white);
  padding: 30px;
  border-bottom: 4px solid var(--primary-color);
  transition: transform 0.3s;
}

.service_card:hover {
  transform: translateY(-10px);
}

/* --- 6. CONTACT & TESTIMONIALS --- */
.contact_cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--secondary-color);
  color: var(--white);
}

.form_wrap, .testimonials {
  padding: 80px 10%;
}

.form_wrap {
  background: rgba(247, 183, 47, 0.1);
}

form input, form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--white);
}

/* --- 7. FOOTER --- */
footer {
  background: #151519;
  color: #888;
  padding: 50px 0;
  text-align: center;
}

.socials {
  margin-bottom: 20px;
}

.socials a {
  margin: 0 10px;
  font-size: 20px;
}

/* --- 8. RESPONSIVENESS --- */
@media (max-width: 768px) {
  header .container { flex-direction: column; }
  .main_menu ul { display: none; } /* You'd trigger this with JS for mobile */
  .hero_slider h1 { font-size: 2rem; }
  .contact_cta { grid-template-columns: 1fr; }
}



/* --- CAREERS PAGE STYLES --- */
.careers_hero {
  background: linear-gradient(rgba(37, 38, 46, 0.7), rgba(37, 38, 46, 0.7)), 
              url('../images/careers-bg.jpg') center/cover no-repeat;
  padding: 100px 0;
}

.careers_info {
  padding: 80px 20px;
}

.content_block {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.values_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value_item {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.application_form_section {
  background: #f9f9f9;
  padding: 80px 0;
}

.form_card {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form_group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

#career_application textarea {
  width: 100%;
  height: 120px;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

#career_application input {
  border: 1px solid #ddd;
  color: #333; /* Darker text for readability on white background */
}

@media (max-width: 600px) {
  .form_group { grid-template-columns: 1fr; }
}

/* --- SERVICES GRID STYLES --- */
.services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 80px 20px;
}

.service_item {
  background: #fff;
  padding: 40px;
  border: 1px solid #eee;
  border-top: 5px solid var(--primary-color);
  transition: all 0.3s ease;
}

.service_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.07);
}

.service_item .icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.service_item h3 {
  margin-bottom: 15px;
  font-family: var(--font-heading);
  color: var(--secondary-color);
}

.service_item p {
  color: #666;
  font-size: 15px;
}

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



/* --- CONTACT PAGE STYLES --- */
.contact_grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 80px 20px;
}

.detail_item {
  margin-bottom: 40px;
}

.detail_item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.contact_form_box {
  background: #fff;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact_form_box h3 {
  margin-bottom: 25px;
}

#contact_form input, 
#contact_form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  font-family: var(--font-main);
}

#contact_form textarea {
  height: 150px;
}

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