/* Showcase Coming Soon Section */
.showcase-coming-soon {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  color: #444;
  font-size: 18px;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
/* Hero Section */
.hero {
  background: linear-gradient(120deg, #0f2027 0%, #2c5364 100%);
  color: #fff;
  padding: 80px 20px 60px 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.tagline {
  font-size: 20px;
  margin-bottom: 28px;
  color: #e0e0e0;
}

.cta-btn {
  display: inline-block;
  background: #ff7e5f;
  color: #fff;
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #eb5757;
}

/* Sections */
.section {
  margin: 48px 0;
}
.section h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

/* Services List */
.services-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.services-list li {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 16px;
  color: #222;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  flex: 1 1 220px;
  min-width: 180px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 400px;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  background: #fafbfc;
  color: #222;
  resize: none;
}
.contact-form button {
  background: #2c5364;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.7;
}
.form-note {
  font-size: 13px;
  color: #888;
  margin-top: 6px;
}

/* Responsive Design */
@media (max-width: 700px) {
  .content, .footer-content {
    max-width: 98vw;
    padding: 0 8px;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .section h2 {
    font-size: 20px;
  }
  .services-list {
    flex-direction: column;
    gap: 10px;
  }
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  background-color: #ffffff;
  color: #111111;
  line-height: 1.6;
}

/* Main content */
.content {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.content h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

.content p {
  font-size: 16px;
  color: #444444;
}

/* Footer */
.site-footer {
  background-color: #0f0f0f;
  color: #e5e5e5;
  padding: 40px 20px;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.company-name {
  font-weight: 600;
  margin-bottom: 8px;
}

.company-note {
  font-size: 14px;
  color: #b5b5b5;
  margin-bottom: 20px;
}

/* Social links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-links a {
  font-size: 14px;
  color: #e5e5e5;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.social-links a:hover {
  opacity: 1;
}
