@charset "UTF-8";
/*$primary: #3f3f2c;
$secondary: #d2d2bf;
$light-bg: #f9f9f9;
$accent: #f1f237;*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

hr {
  margin: 30px 0;
}

a {
  color: #2c2b3d;
}

.image-placeholder {
  max-width: 800px;
  margin: 0 auto 3rem;
}

img.img-rounded {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
img.shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.legend {
  text-align: center;
  margin-top: 1rem;
  color: #666;
  font-style: italic;
}

header {
  background-color: #2c2b3d;
  color: #ffffff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  header {
    position: relative;
  }
}
header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  header .header-container {
    flex-direction: column;
    text-align: center;
  }
}
header .logo {
  font-size: 1.8rem;
  font-weight: bold;
}
header .logo a {
  color: #9ac456;
  text-decoration: none;
}
header nav ul.menu {
  /*list-style: none;
  display: flex;
  gap: 2rem;
  position: relative;*/
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
header nav ul.menu li {
  position: relative;
}
header nav ul.menu li.menu-right {
  margin-left: auto;
}
header nav ul.menu li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
header nav ul.menu li a:hover {
  color: #9ac456;
}
header nav ul.menu li a.btn-commander {
  display: inline-block;
  background-color: #9ac456;
  color: #ffffff;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}
header nav ul.menu li a.btn-commander:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(187, 224, 128, 0.4);
}
header nav ul.menu li ul.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2c2b3d;
  border-radius: 8px;
  padding: 1rem 0;
  min-width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
}
@media (max-width: 768px) {
  header nav ul.menu li ul.submenu {
    position: relative;
    box-shadow: none;
    min-width: 100%;
  }
}
header nav ul.menu li ul.submenu li {
  display: block;
}
header nav ul.menu li ul.submenu li a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #ffffff;
  transition: background 0.3s;
}
header nav ul.menu li ul.submenu li a:hover {
  background-color: #9ac456;
  color: #2c2b3d;
}
header nav ul.menu li:hover > .submenu {
  display: block;
}
@media (max-width: 768px) {
  header nav ul.menu {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  header nav ul.menu .submenu {
    position: static;
    box-shadow: none;
    background-color: #dcdee8;
    width: 100%;
    border-radius: 0;
  }
  header nav ul.menu .submenu a {
    color: #2c2b3d;
  }
  header nav ul.menu .submenu a:hover {
    background-color: #9ac456;
    color: #2c2b3d;
  }
}

.hero {
  background: linear-gradient(135deg, rgba(44, 43, 61, 0.85), rgba(92, 105, 71, 0.85)), url("../images/certificat-peb-hero.webp") center/cover no-repeat;
  color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}
.hero .hero-content {
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}
.hero .hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: #dcdee8;
}
@media (max-width: 768px) {
  .hero .hero-subtitle {
    font-size: 1.1rem;
  }
}
.hero .hero-description {
  margin-bottom: 2rem;
}

.express-badge {
  display: inline-block;
  background-color: #e74c3c;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.section {
  padding: 4rem 2rem;
}
@media (max-width: 768px) {
  .section {
    padding: 0;
  }
}
.section.section-alt {
  background-color: #f9f9f9;
}

.cta-button {
  display: inline-block;
  background-color: #9ac456;
  color: #ffffff;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(154, 196, 86, 0.3);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(154, 196, 86, 0.4);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.container .intro-text {
  text-align: center;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.9;
}

h2 {
  font-size: 2.5rem;
  color: #2c2b3d;
  margin-bottom: 2rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.services-grid .service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: #dcdee8;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 3px solid transparent;
}
.services-grid .service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.services-grid .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #9ac456;
}
.services-grid .service-card h3 {
  color: #2c2b3d;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.services-grid .service-card .service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.criteria-grid {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.criteria-grid .criteria-card {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #9ac456;
  transition: transform 0.3s;
}
.criteria-grid .criteria-card:hover {
  transform: translateY(-5px);
}
.criteria-grid .criteria-card .criteria-number {
  display: inline-block;
  background-color: #2c2b3d;
  color: #9ac456;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.criteria-grid .criteria-card h4 {
  color: #2c2b3d;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.criteria-grid .criteria-card p {
  line-height: 1.8;
  color: #333333;
}

.benefits {
  background-color: #dcdee8;
  padding: 4rem 2rem;
}
.benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.benefits .benefits-grid .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.benefits .benefits-grid .benefit-item .benefit-icon {
  font-size: 2rem;
  color: #9ac456;
  flex-shrink: 0;
}
.benefits .benefits-grid .benefit-item h4 {
  color: #2c2b3d;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.benefits-list {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
}
.benefits-list .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #dcdee8;
}
.benefits-list .benefit-item:last-child {
  border-bottom: none;
}
.benefits-list .benefit-item .benefit-icon {
  font-size: 2rem;
  color: #9ac456;
  flex-shrink: 0;
}
.benefits-list .benefit-item h4 {
  color: #2c2b3d;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.benefits-list .benefit-item p {
  line-height: 1.7;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.process-steps .process-step {
  text-align: center;
}
.process-steps .process-step .step-number {
  background-color: #9ac456;
  color: #2c2b3d;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}
.process-steps .process-step img {
  width: 80px;
  margin-bottom: 1rem;
}

.zone-coverage {
  background-color: #ffffff;
  text-align: center;
}
.zone-coverage .map-container {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-direction: row;
}
@media (max-width: 768px) {
  .zone-coverage .map-container {
    flex-direction: column;
  }
}
.zone-coverage img {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 10px;
}
.zone-coverage .zones {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.zone-coverage .zones .zone-card {
  background-color: #2c2b3d;
  color: #ffffff;
  padding: 2rem 3rem;
  border-radius: 10px;
  text-align: center;
  min-width: 200px;
}
.zone-coverage .zones .zone-card h3 {
  color: #9ac456;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.definition-card {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 10px;
  border-left: 5px solid #9ac456;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-direction: row;
}
@media (max-width: 480px) {
  .definition-card {
    flex-direction: column;
  }
}
.definition-card img {
  width: 250px;
  border-radius: 10px;
}
.definition-card h3 {
  color: #2c2b3d;
  margin-bottom: 1rem;
}
.definition-card ul {
  margin-left: 2rem;
  margin-top: 1rem;
}
.definition-card ul li {
  margin-bottom: 0.8rem;
}

.key-points {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin: 3rem 0;
}
@media (max-width: 480px) {
  .key-points {
    flex-direction: column;
  }
}
.key-points .key-point {
  background-color: #dcdee8;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  flex-grow: 1;
  flex-basis: 0;
}
.key-points .key-point .key-point-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.key-points .key-point .step-number {
  background-color: #2c2b3d;
  color: #9ac456;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  border: 4px solid #9ac456;
}
.key-points .key-point h4 {
  color: #2c2b3d;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.key-points .key-point p {
  color: #333333;
  line-height: 1.7;
}

.why-express {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.why-express .express-reason {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 4px solid #9ac456;
}
.why-express .express-reason .express-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.why-express .express-reason h4 {
  color: #2c2b3d;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.why-express .express-reason p {
  line-height: 1.7;
}

.infobox {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
}
.infobox.advice {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
}
.infobox p {
  margin: 0;
  color: #856404;
}

/* Key Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.info-card {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #9ac456;
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.info-card h4 {
  color: #2c2b3d;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.info-card p {
  line-height: 1.7;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-cards .pricing-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: transform 0.3s, border-color 0.3s;
}
.pricing-cards .pricing-card:hover {
  transform: translateY(-10px);
  border-color: #9ac456;
}
.pricing-cards .pricing-card.featured {
  border-color: #9ac456;
  background: linear-gradient(135deg, #fffef5 0%, #ffffff 100%);
}
.pricing-cards .pricing-card .pricing-label {
  background-color: #2c2b3d;
  color: #9ac456;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.pricing-cards .pricing-card h4 {
  color: #2c2b3d;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.pricing-cards .pricing-card .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c2b3d;
  margin: 1.5rem 0;
}
.pricing-cards .pricing-card .price-detail {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}
.pricing-cards .pricing-card .pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}
.pricing-cards .pricing-card .pricing-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #dcdee8;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.pricing-cards .pricing-card .pricing-features li:last-child {
  border-bottom: none;
}
.pricing-cards .pricing-card .check-icon {
  color: #9ac456;
  font-weight: bold;
}

.checklist {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 3rem auto;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid #dcdee8;
  transition: background-color 0.3s;
}

.checklist-item:hover {
  background-color: #f9f9f9;
}

.checklist-item:last-child {
  border-bottom: none;
}

.checkbox {
  width: 30px;
  height: 30px;
  border: 3px solid #9ac456;
  border-radius: 5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ac456;
  font-weight: bold;
  font-size: 1.5rem;
}

.checklist-content h4 {
  margin-bottom: 0.5rem;
}

.checklist-content p {
  color: #666;
  line-height: 1.7;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tip-card {
  background: linear-gradient(135deg, #dcdee8 0%, #e3edd3 100%);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  border-top: 4px solid #9ac456;
}

.tip-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tip-card h4 {
  color: #2c2b3d;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.tip-card p {
  line-height: 1.7;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-list .faq-item {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.faq-list .faq-item h4 {
  color: #2c2b3d;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.faq-list .faq-item p {
  line-height: 1.8;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.faq-grid .faq-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #9ac456;
}
.faq-grid .faq-card h4 {
  color: #2c2b3d;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.faq-grid .faq-card h4::before {
  content: "❓";
  font-size: 1.5rem;
  flex-shrink: 0;
}
.faq-grid .faq-card p {
  color: #666;
  line-height: 1.8;
}

.map-section {
  text-align: center;
}

.map-section h3 {
  color: #2c2b3d;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.map-placeholder {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 4rem;
  text-align: center;
  border: 3px dashed #dcdee8;
}

.map-placeholder p {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.coverage-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.coverage-badge {
  background: #9ac456;
  color: #2c2b3d;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(187, 224, 128, 0.3);
}

.cta-section {
  background: linear-gradient(135deg, #2c2b3d 0%, #5c6947 100%);
  color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}
.cta-section h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-card {
  background: linear-gradient(135deg, #dcdee8 0%, #e3edd3 100%);
  padding: 4rem 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 900px;
  margin: 4rem auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.cta-card h3 {
  color: #2c2b3d;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.cta-card p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

#commander {
  background: linear-gradient(135deg, rgba(44, 43, 61, 0.85), rgba(92, 105, 71, 0.85)), url("../images/pebepc-footer.webp") center/cover no-repeat;
}

/* CTA urgent Section */
.cta-card-urgent {
  background: linear-gradient(135deg, #2c2b3d 0%, #5c6947 100%);
  color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 20px;
  margin: 3rem 0;
}
.cta-card-urgent h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.cta-card-urgent .phone-number {
  font-size: 2rem;
  font-weight: bold;
  color: #9ac456;
  margin: 1.5rem 0;
  display: block;
}
.cta-card-urgent .phone-link {
  color: #9ac456;
  text-decoration: none;
  transition: transform 0.3s;
  display: inline-block;
}
.cta-card-urgent .phone-link:hover {
  transform: scale(1.05);
}

.cta-card-white {
  max-width: 800px;
  margin: 0 auto;
  background-color: v #ffffff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.cta-card-white p:not(:last-child) {
  padding-bottom: 20px;
}

footer {
  background-color: #2c2b3d;
  color: #ffffff;
  padding: 3rem 2rem 1.5rem;
}
footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}
footer .footer-content .footer-section h3 {
  color: #9ac456;
  margin-bottom: 1rem;
}
footer .footer-content .footer-section a {
  color: #dcdee8;
  text-decoration: none;
  line-height: 2;
  transition: color 0.3s;
}
footer .footer-content .footer-section a:hover {
  color: #9ac456;
}
footer .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(210, 210, 191, 0.3);
  color: #dcdee8;
}
footer .footer-bottom a {
  color: #ffffff;
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 3rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Contact Cards */
.contact-cards {
  display: grid;
  gap: 2rem;
}
.contact-cards .contact-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 5px solid #9ac456;
}
.contact-cards .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.contact-cards .contact-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-cards .contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #9ac456 0%, #bbe080 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.contact-cards .contact-card h3 {
  color: #2c2b3d;
  font-size: 1.6rem;
  margin: 0;
}
.contact-cards .contact-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.contact-cards .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-cards .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #f9f9f9;
  border-radius: 10px;
  transition: background-color 0.3s;
}
.contact-cards .contact-item:hover {
  background-color: rgba(187, 224, 128, 0.1);
}
.contact-cards .contact-item-icon {
  font-size: 1.5rem;
}
.contact-cards .contact-item a {
  color: #2c2b3d;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}
.contact-cards .contact-item a:hover {
  color: #9ac456;
}
.contact-cards .contact-item span {
  color: #333333;
  font-weight: 600;
}

.contact-form-section {
  background: #ffffff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
  height: fit-content;
  /* Hours Section */
}
.contact-form-section h3 {
  color: #2c2b3d;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form-section h3::before {
  content: "";
  width: 5px;
  height: 30px;
  background-color: #9ac456;
  border-radius: 3px;
}
.contact-form-section .hours-section {
  background: linear-gradient(135deg, #2c2b3d 0%, #5c6947 100%);
  color: #ffffff;
  padding: 3rem;
  border-radius: 15px;
  margin-top: 3rem;
}
.contact-form-section .hours-section h3 {
  color: #9ac456;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact-form-section .hours-section .hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.contact-form-section .hours-section .hours-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.contact-form-section .hours-section .day {
  font-weight: 600;
  color: #9ac456;
}
.contact-form-section .hours-section .time {
  color: #dcdee8;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .order-layout {
    grid-template-columns: 1fr;
  }
}

/* Form Section */
.form-section {
  background: #ffffff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-section h2 {
  color: #2c2b3d;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-section h2::before {
  content: "";
  width: 5px;
  height: 30px;
  background-color: #9ac456;
  border-radius: 3px;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-weight: 600;
  color: #2c2b3d;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.required {
  color: #e74c3c;
  margin-left: 3px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
select,
textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #dcdee8;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #9ac456;
  box-shadow: 0 0 0 3px rgba(187, 224, 128, 0.1);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.help-text {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.3rem;
  font-style: italic;
}

/* Radio/Checkbox Groups */
.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  border: 2px solid #dcdee8;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.radio-option:hover,
.checkbox-option:hover {
  border-color: #9ac456;
  background-color: rgba(187, 224, 128, 0.05);
}

.radio-option.selected,
.checkbox-option.selected {
  border-color: #9ac456;
  background-color: rgba(187, 224, 128, 0.1);
}

.radio-option input[type=radio],
.checkbox-option input[type=checkbox] {
  margin-top: 0.2rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.option-content {
  flex: 1;
}

.option-content strong {
  display: block;
  color: #2c2b3d;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.option-price {
  color: #27ae60;
  font-weight: bold;
  font-size: 1.1rem;
}

.option-badge {
  background-color: #9ac456;
  color: #2c2b3d;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  display: inline-block;
  margin-left: 0.5rem;
}

/* Summary Section */
.summary-section {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.summary-card {
  background: #2c2b3d;
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.summary-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #9ac456;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(210, 210, 191, 0.3);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  color: #dcdee8;
}

.summary-value {
  font-weight: bold;
}

.summary-total {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #9ac456;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.summary-total .label {
  color: #9ac456;
}

.summary-total .amount {
  color: #ffffff;
}

.trust-badges {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(210, 210, 191, 0.3);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: #dcdee8;
  font-size: 0.9rem;
}

.trust-badge span {
  font-size: 1.3rem;
}

/* Submit Button */
.submit-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #dcdee8;
}

.submit-button {
  width: 100%;
  background-color: #9ac456;
  color: #2c2b3d;
  padding: 1.3rem;
  font-size: 1.3rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(187, 224, 128, 0.3);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(187, 224, 128, 0.5);
}

.submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.terms-acceptance {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.terms-acceptance input[type=checkbox] {
  margin-top: 0.3rem;
  width: 20px;
  height: 20px;
}

.terms-acceptance label {
  font-weight: normal;
  font-size: 0.9rem;
}

.terms-acceptance a {
  color: #2c2b3d;
  text-decoration: underline;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid #dcdee8;
}

.feature {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature h4 {
  color: #2c2b3d;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature p {
  color: #666;
  font-size: 0.95rem;
}

/*# sourceMappingURL=style.css.map */
