/* HEADER */
.caelix-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.caelix-logo {
  height: 40px;
  max-width: 160px;
}

.caelix-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.caelix-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  cursor: pointer;
}

.caelix-burger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .caelix-burger {
    display: block;
  }

  .caelix-nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 24px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  .caelix-nav ul {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .caelix-nav.active {
    display: block;
  }
}

/* Footer */
.caelix-footer {
  background-color: #002f4b;
  color: white;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left {
  flex: 1 1 200px;
}

.footer-logo {
  max-height: 40px;
  margin-bottom: 10px;
}

.footer-links,
.footer-contact {
  flex: 1 1 160px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-line {
  margin-bottom: 8px;
}

.footer-line .label {
  font-weight: 600;
  margin-right: 4px;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }
}


/* General */
.caelix-corporate-hero {
  background: linear-gradient(to right, #002f4b, #005f6b);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.caelix-button {
  background-color: #ff6b35;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
}

.caelix-trust-logos {
  padding: 40px 20px;
  text-align: center;
}

.logo-strip img {
  height: 50px;
  margin: 0 15px;
}

.caelix-service-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.caelix-service-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 280px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.caelix-why-choose-us {
  padding: 60px 20px;
}

.caelix-why-choose-us ul {
  list-style: none;
  padding: 0;
}

.caelix-why-choose-us li::before {
  content: "✔️ ";
}

.caelix-testimonials {
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.caelix-cta-section {
  background-color: #005f6b;
  color: white;
  padding: 60px 20px;
  text-align: center;
}


/* ABOUT PAGE ADDITIONS */
.caelix-about-hero {
  background-color: #f2f2f2;
  padding: 60px 20px;
  text-align: center;
}

.caelix-mvv-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 20px;
  background-color: #fff;
  justify-content: space-around;
}

.mvv {
  flex: 1 1 280px;
  max-width: 400px;
}

.mvv ul {
  list-style: none;
  padding: 0;
}

.caelix-story-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.caelix-team-section {
  padding: 60px 20px;
  text-align: center;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 30px;
}

.team-member {
  flex: 1 1 220px;
  max-width: 240px;
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 12px;
}


/* SERVICES PAGE ADDITIONS */
.caelix-services-hero {
  background-color: #f3f3f3;
  padding: 60px 20px;
  text-align: center;
}

.caelix-services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 60px 20px;
  background-color: #ffffff;
}

.service-item {
  max-width: 320px;
  flex: 1 1 280px;
  padding: 24px;
  background: #fafafa;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.04);
  text-align: center;
}

.service-item img {
  height: 80px;
  margin-bottom: 16px;
}

/* PROJECTS PAGE ADDITIONS */
.caelix-projects-hero {
  background-color: #eef3f7;
  padding: 60px 20px;
  text-align: center;
}

.caelix-projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 60px 20px;
  background-color: #ffffff;
}

.project-card {
  max-width: 320px;
  flex: 1 1 280px;
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
}

.project-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 16px;
}

.project-card h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.project-card p {
  font-size: 15px;
  margin-bottom: 12px;
}

.caelix-link {
  color: #005f6b;
  text-decoration: none;
  font-weight: 500;
}

/* CONTACT PAGE ADDITIONS */
.caelix-contact-hero {
  background-color: #f6f9fc;
  padding: 60px 20px;
  text-align: center;
}

.caelix-contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  justify-content: center;
  background-color: #ffffff;
}

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

.contact-info a {
  color: #005f6b;
  text-decoration: none;
}

.social-links {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  font-size: 20px;
}

.contact-form {
  flex: 1 1 300px;
  max-width: 500px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
}

.contact-form button {
  align-self: flex-start;
}

.caelix-map-section iframe {
  width: 100%;
  border: 0;
  margin-top: 40px;
}

.contact-line {
  margin-bottom: 10px;
}

.contact-line .label {
  display: inline-block;
  font-weight: 600;
  margin-right: 8px;
}
