/* GLOBAL */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: white;
  color: #1A1A1A;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 70px; /* For fixed nav */
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #B87333;
  padding: 10px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 12px;
}

nav a:hover {
  background: #DAAF57;
  color: #1A1A1A;
  border-radius: 6px;
}

/* HEADER */
header {
  background: #F5F3DC;
  padding: 25px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #DAAF57;
}

.logo {
  height: 90px;
}

header h1 {
  color: #B87333;
  margin: 0;
}

header p {
  color: #DAAF57;
  margin: 4px 0 0;
}

/* SLIDER */
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.slides {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: none;
  border-radius: 10px;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(218, 175, 87, 0.8); /* semi-transparent */
  padding: 25px;
  border-radius: 10px;
  color: white;
  text-align: center;
  max-width: 600px;
}

/* BUTTON */
.button {
  background: #DAAF57;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.button:hover {
  background: #B87333;
}

/* SECTIONS */
.section {
  padding: 60px 8%;
  max-width: 1200px;
  margin: 30px auto;
  border-radius: 15px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.section h2 {
  color: #B87333;
  margin-top: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #F5F0E1;
  padding: 18px;
  border-radius: 12px;
  border-left: 6px solid #DAAF57;
}

/* PROCESS */
.process-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.process-block {
  background: #FFF3E6;
  border-left: 7px solid #B87333;
  padding: 20px;
  border-radius: 12px;
}

.process-result {
  background: #DAAF57;
  color: white;
  padding: 20px;
  border-radius: 12px;
}

/* PARTNERS */
.highlight {
  background: #FFF5DE;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.partner-card {
  background: #B87333;
  color: white;
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.partner-card:hover {
  background: #DAAF57;
  color: #1A1A1A;
}

/* CONTACT */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #F5F0E1;
  padding: 40px;
  border-radius: 12px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.map-container {
  flex: 1;
  min-width: 300px;
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* POPUP */
#popup-form {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #DAAF57;
  padding: 30px;
  border-radius: 15px;
  z-index: 2000;
  width: 90%;
  max-width: 480px;
}

#popup-form input,
#popup-form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #B87333;
}

.submit-btn {
  background: #1A1A1A;
  color: #DAAF57;
  padding: 12px;
  border: none;
  width: 100%;
  font-weight: bold;
  border-radius: 6px;
}

#popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #B87333;
  color: white;
  padding: 25px;
  text-align: center;
  margin-top: 40px;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){
  .slides { height: 300px; }
  .contact-section { flex-direction: column; }
}
 /* PRIVACY POLICY */
#privacy-policy h2 {
  color: #B87333;
  margin-top: 0;
  text-align: center;
}

#privacy-policy h3 {
  color: #B87333;
  margin-bottom: 10px;
}

#privacy-policy h4 {
  color: #DAAF57;
  margin-bottom: 6px;
}

.privacy-block {
  background: #F5F0E1;
  border-left: 6px solid #DAAF57;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 20px;
}

#privacy-policy ul {
  list-style-type: disc;
  margin-left: 20px;
}

#privacy-policy a {
  color: #B87333;
  text-decoration: none;
}

#privacy-policy a:hover {
  color: #DAAF57;
  text-decoration: underline;
}
