/* ========== GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  margin: 0;
  color: #fff;
  background: url('banner.jpg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========== SHARED COMPONENTS ========== */
/* Navigation - Same for all pages */
nav {
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffd700;
}

/* Footer - Same for all pages */
footer {
  background-color: rgba(0,0,0,0.9);
  text-align: center;
  padding: 15px;
  color: #ccc;
  font-size: 14px;
  margin-top: auto;
}

/* ========== HOME PAGE ========== */
/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  flex: 1;
}

.banner-image {
  display: none; /* Using background in body instead */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
}

.overlay .logo {
  width: 150px;
  margin-bottom: 1.5rem;
}

.overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.overlay p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.overlay button {
  background-color: #f7c03d;
  color: #000;
  padding: 12px 30px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.overlay button:hover {
  background-color: #d9a731;
  transform: translateY(-2px);
}

/* Services Section */
#services {
  padding: 5rem 2rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
}

#services h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #f7c03d;
}

#services ul {
  list-style: none;
  font-size: 1.2rem;
  line-height: 2;
  max-width: 600px;
  margin: 0 auto;
}

#services ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

#services ul li:before {
  content: "•";
  color: #f7c03d;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* ========== ABOUT PAGE ========== */
.about-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.6);
}

.about-content {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  color: #333;
}

.about-content h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #222;
  font-size: 2.5rem;
}

.about-content h2 {
  color: #000;
  margin: 25px 0 15px;
  font-size: 1.5rem;
  color: #f7c03d;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.values-list {
  list-style-type: none;
  padding-left: 20px;
}

.values-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.values-list li:before {
  content: "•";
  color: #f7c03d;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.6);
}

.contact-container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  color: #333;
}

.contact-container h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #222;
  font-size: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 15px;
  font-size: 1rem;
  color: #555;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 5px;
  background-color: #f9f9f9;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  margin-top: 25px;
  padding: 14px;
  background-color: #f7c03d;
  color: #000;
  font-size: 1.1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #d9a731;
  transform: translateY(-2px);
}

/* ========== RFQ PAGE ========== */
.rfq-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.6);
}

.rfq-form {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  color: #333;
}

.rfq-form h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #222;
  font-size: 2rem;
}

.rfq-form input,
.rfq-form textarea,
.rfq-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #f9f9f9;
}

.rfq-form textarea {
  min-height: 150px;
  resize: vertical;
}

.rfq-form button {
  background-color: #f7c03d;
  color: #000;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  font-weight: 600;
}

.rfq-form button:hover {
  background-color: #d9a731;
  transform: translateY(-2px);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 15px;
  }
  
  nav ul {
    margin-top: 15px;
  }
  
  nav ul li {
    margin-left: 15px;
    margin-right: 15px;
  }
  
  .overlay h1 {
    font-size: 2.2rem;
  }
  
  .overlay p {
    font-size: 1.1rem;
  }
  
  .about-content,
  .contact-container,
  .rfq-form {
    padding: 30px 20px;
  }
  
  #services h2,
  .about-content h1,
  .contact-container h1 {
    font-size: 2rem;
  }
}