/* ========================================
   WHAT IS SECTION STYLES
   Shared styles for what-is sections across pages
   ======================================== */

/* ========================================
   WHAT IS SECTION BASE STYLES
   ======================================== */

.what-is-section {
  background-color: #edeff1;
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 10px;
}

.what-is-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.what-is-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c6402d;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 0 2rem 0 2rem;
}

.what-is-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2a3f50;
}

.what-is-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(42, 63, 80, 0.15);
}

/* ========================================
   WHAT IS SECTION RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .what-is-section {
    padding: 40px 0;
    margin: 30px 0;
  }

  .what-is-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }

  .what-is-title {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
  }

  .what-is-content {
    font-size: 1rem;
    text-align: center;
  }

  .what-is-image {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .what-is-title {
    font-size: 1.7rem;
    text-align: center;
  }

  .what-is-container {
    padding: 0 10px;
  }

  .what-is-image {
    height: 250px;
  }
}

/* ========================================
   PROCESS SECTION STYLES
   Shared styles for process sections across pages
   ======================================== */

/* ========================================
   PROCESS SECTION BASE STYLES
   ======================================== */

.process-section {
  background-color: #2a3f50;
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 10px;
}

.process-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  padding: 0 2rem 0 2rem;
}

.process-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #e6a832 0%, #ffd34e 100%);
  border-radius: 2px;
}

.process-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.process-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.9;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.process-list li {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 40px;
  padding: 0 0 0 70px;
  position: relative;
}

.process-list li:last-child {
  margin-bottom: 0;
}

.process-number {
  position: absolute;
  left: 10px;
  top: -10px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e6a832 0%, #ffd34e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(230, 168, 50, 0.3);
  z-index: 2;
  color: #2a3f50;
  font-size: 1.2rem;
  font-weight: bold;
}

.process-list li strong {
  color: #e6a832;
  font-weight: 600;
}

/* ========================================
   PROCESS SECTION RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .process-section {
    padding: 40px 0;
    margin: 30px 0;
  }

  .process-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .process-content {
    padding: 0 15px;
  }

  .process-intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .process-list li {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 0 0 60px;
  }

  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .process-title {
    font-size: 1.7rem;
  }

  .process-content {
    padding: 0 10px;
  }

  .process-list li {
    padding: 0 0 0 50px;
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .process-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

/* ========================================
   CTA SECTION STYLES
   Shared styles for CTA sections across pages
   ======================================== */

/* ========================================
   CTA SECTION BASE STYLES
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, #2a3f50 0%, #34495e 100%);
  padding: 80px 0;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
}

.cta-section .section-content h2 {
  color: #ffffff;
  margin-bottom: 30px;
}

.cta-section .section-content p {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ========================================
   WHY MATTERS CTA SECTION STYLES
   ======================================== */

.why-matters-cta-section {
  background: linear-gradient(135deg, #f8f8f8 0%, #edeff1 100%);
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(42, 63, 80, 0.08);
  position: relative;
  overflow: hidden;
}

.why-matters-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c6402d 0%, #e6a832 100%);
}

.why-matters-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.why-matters-cta-content p {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2a3f50;
  margin-bottom: 30px;
  line-height: 1.6;
}

.why-matters-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.why-matters-cta-buttons .cta-button,
.why-matters-cta-buttons .cta-button-secondary {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 200px;
}

.why-matters-cta-buttons .cta-button {
  background-color: #c6402d;
  color: #ffffff;
  border: 2px solid #c6402d;
}

.why-matters-cta-buttons .cta-button:hover {
  background-color: #e6a832;
  border-color: #e6a832;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 64, 45, 0.3);
}

.why-matters-cta-buttons .cta-button-secondary {
  background-color: transparent;
  color: #c6402d;
  border: 2px solid #c6402d;
}

.why-matters-cta-buttons .cta-button-secondary:hover {
  background-color: #c6402d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 64, 45, 0.3);
}

/* ========================================
   CTA SECTION RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .cta-section {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .why-matters-cta-section {
    padding: 40px 0;
    margin: 30px 0;
  }

  .why-matters-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .why-matters-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .why-matters-cta-buttons .cta-button,
  .why-matters-cta-buttons .cta-button-secondary {
    font-size: 1rem;
    padding: 14px 24px;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .why-matters-cta-content p {
    font-size: 1rem;
  }

  .why-matters-cta-buttons .cta-button,
  .why-matters-cta-buttons .cta-button-secondary {
    font-size: 0.9rem;
    padding: 12px 20px;
    min-width: 160px;
  }
}

/* ========================================
   SIGNS SECTION STYLES
   Shared styles for signs sections across pages
   ======================================== */

/* ========================================
   SIGNS SECTION BASE STYLES
   ======================================== */

.signs-section {
  background: linear-gradient(135deg, #f8f8f8 0%, #edeff1 100%);
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(42, 63, 80, 0.08);
  position: relative;
  overflow: hidden;
}

.signs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c6402d 0%, #e6a832 100%);
}

.signs-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c6402d;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(198, 64, 45, 0.1);
  position: relative;
  padding: 0 2rem 0 2rem;
}

.signs-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.signs-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2a3f50;
  text-align: center;
  margin-bottom: 50px;
}

.signs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 40px;
}

.signs-list-container {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.signs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.signs-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.signs-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(42, 63, 80, 0.15);
}

.signs-list li {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2a3f50;
  margin-bottom: 0;
  padding: 20px 20px 20px 50px;
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(42, 63, 80, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #e6a832;
}

.signs-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 63, 80, 0.12);
  border-left-color: #c6402d;
}

.signs-list li:before {
  content: '✓';
  color: #c6402d;
  font-size: 1.3rem;
  font-weight: bold;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: rgba(198, 64, 45, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.signs-cta-wrapper {
  text-align: center;
  margin-top: 30px;
}

.signs-cta-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2a3f50;
  text-align: center;
  font-weight: 700;
  margin-bottom: 25px;
}

/* ========================================
   SIGNS SECTION RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .signs-section {
    padding: 40px 0;
    margin: 30px 0;
  }

  .signs-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .signs-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .signs-image {
    height: 300px;
  }

  .signs-content {
    padding: 0 15px;
  }

  .signs-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 40px;
  }

  .signs-list li:before {
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .signs-title {
    font-size: 1.7rem;
  }

  .signs-content {
    padding: 0 10px;
  }

  .signs-list {
    gap: 12px;
  }

  .signs-list li {
    padding: 12px 12px 12px 35px;
    font-size: 0.95rem;
  }

  .signs-list li:before {
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    font-size: 10px;
  }

  .signs-cta-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

/* ========================================
   HISTORIC SECTION STYLES
   Shared styles for historic sections across pages
   ======================================== */

/* ========================================
   HISTORIC SECTION BASE STYLES
   ======================================== */

.historic-section {
  background: linear-gradient(rgba(42, 63, 80, 0.85), rgba(42, 63, 80, 0.85)), url('../img/hero-desktop-1920.webp') center/cover;
  background-attachment: fixed;
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.historic-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c6402d 0%, #e6a832 50%, #c6402d 100%);
  z-index: 1;
}

.historic-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e6a832 0%, #c6402d 50%, #e6a832 100%);
  z-index: 1;
}

.historic-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;
  padding: 0 2rem 0 2rem;
}

.historic-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #e6a832 0%, #ffd34e 100%);
  border-radius: 2px;
}

.historic-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.historic-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2a3f50;
  text-align: center;
  margin: 0 0 30px 0;
  font-weight: 500;
}

.historic-content p:last-child {
  margin-bottom: 0;
}

.historic-cta {
  justify-content: center;
  display: flex;
}

/* ========================================
   HISTORIC SECTION RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .historic-section {
    padding: 40px 0;
    margin: 30px 0;
  }

  .historic-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .historic-content {
    padding: 25px 15px;
  }

  .historic-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .historic-title {
    font-size: 1.7rem;
  }

  .historic-content {
    padding: 20px 15px;
  }
}

/* ========================================
   INTRO SECTION STYLES
   Shared styles for intro sections across pages
   ======================================== */

/* ========================================
   INTRO SECTION BASE STYLES
   ======================================== */

.intro-section {
  background-color: #ffffff;
  padding: 60px 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(42, 63, 80, 0.1);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c6402d 0%, #e6a832 50%, #c6402d 100%);
  z-index: 1;
}

.intro-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.intro-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #c6402d;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.intro-content p {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2a3f50;
}

.intro-content p:last-child {
  margin-bottom: 0;
}

/* ========================================
   INTRO SECTION RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .intro-section {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .intro-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .intro-content h2 {
    font-size: 1.7rem;
    margin-bottom: 25px;
  }
}

/* ========================================
   SCHEDULING SECTION STYLES
   Shared styles for scheduling sections across pages
   ======================================== */

/* ========================================
   SCHEDULING SECTION BASE STYLES
   ======================================== */

.scheduling-section {
  background-color: #2c3e50;
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.scheduling-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  padding: 0 2rem 0 2rem;
}

.scheduling-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #e6a832 0%, #ffd34e 100%);
  border-radius: 2px;
}

.scheduling-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.scheduling-text {
  display: flex;
  flex-direction: column;
}

.scheduling-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  text-align: left;
  margin-bottom: 40px;
  font-weight: 500;
}

/* Override section-intro and section-closing colors for scheduling section */
.scheduling-section .section-intro,
.scheduling-section .section-closing {
  color: #ffffff;
}

.scheduling-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.scheduling-list li {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 0;
  padding: 20px 20px 20px 50px;
  position: relative;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border-left: 4px solid #e6a832;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.scheduling-list li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-left-color: #ffd34e;
}

.scheduling-list li:before {
  content: '✓';
  color: #e6a832;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: rgba(230, 168, 50, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e6a832;
}

.scheduling-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.scheduling-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  display: block;
}

/* ========================================
   SCHEDULING SECTION RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .scheduling-section {
    padding: 40px 0;
    margin: 30px 0;
  }

  .scheduling-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .scheduling-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }

  .scheduling-intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .scheduling-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .scheduling-list li {
    padding: 15px 15px 15px 45px;
    padding-left: 50px !important;
    font-size: 1rem;
  }

  .scheduling-list li:before {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    font-size: 14px;
  }

  .scheduling-image {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .scheduling-title {
    font-size: 1.7rem;
  }

  .scheduling-content {
    padding: 0 10px;
  }

  .scheduling-list li {
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
  }

  .scheduling-list li:before {
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    font-size: 12px;
  }

  .scheduling-image {
    height: 250px;
  }
}
