* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}
html,
body {
  width: 100%;
  height: 100%;
  background-color: #f9f9f7;
}

main {
  width: 100%;
  height: 100%;
  padding: 24px;
}

.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.contact-section {
  max-width: 1280px;
  margin: auto;
  padding: 40px 0;
}

/* Save Contact */
.save-contact {
  width: 100%;
  background: #7b735f;
  color: #fff;
  border: none;
  padding: 18px;
  border-radius: 18px;
  font-size: 15px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 1px 10px #726c59;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.save-contact i {
  font-size: 18px;
}

.save-contact:hover {
  background-color: #726c59;
  transform: scale(1.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.helper-text {
  text-align: center;
  font-size: 11px;
  color: #b2ae9c;
  margin: 14px 0 40px;
  text-transform: uppercase;
}

/* Actions */
.actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.action {
  text-align: center;
  color: #6f6a58;
  text-decoration: none;
}

.action .icon {
  width: 56px;
  height: 56px;
  margin: auto;
  border-radius: 16px;
  background: #7b735f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action span {
  font-size: 12px;
  color: #726c59;
}

.action i {
  font-size: 28px;
  font-weight: 300;
}

.action:hover .icon {
  transform: scale(1.15);
}

/* Info Cards */
.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f0efec;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card i {
  color: #726c59;
  font-size: 18px;
}

.info-card small {
  letter-spacing: 2px;
  color: #9a9a7a;
  font-size: 11px;
}

.info-card p {
  margin: 4px 0 0;
  color: #3d3d2e;
  font-size: 14px;
}

.info-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.info-card {
  cursor: pointer;
}

.site-footer {
  width: 100%;
  padding: 10px 0;
  padding-bottom: 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 480px) {
  .info-card {
    padding: 10px;
  }

  .footer-logo {
    max-width: 210px;
  }
}

/* CONTACT EXPORT MODAL */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  width: 90%;
  max-width: 450px;
  min-height: 460px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2f2f25;
}

.close-modal {
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: #777;
  line-height: 1;
}

.close-modal:hover {
  color: #000;
}

.modal-sub {
  font-size: 13px;
  color: #9a9a7a;
  margin: 12px 0 24px;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Single option row */
.option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.option:hover {
  background: #f6f6f2;
}

.option input {
  display: none;
}

/* Custom checkbox */
.check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

/* Checked state */
.option input:checked + .check {
  background: #000;
  border-color: #000;
}

.option input:checked + .check::after {
  content: "✓";
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.option-text {
  display: flex;
  flex-direction: column;
}

.option-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #2f2f25;
}

.option-text small {
  font-size: 12px;
  color: #9a9a7a;
  margin-top: 2px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.btn-outline {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid #d6d6d0;
  background: #ffffff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: #f4f4f0;
}

.btn-primary {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  background: #7b735f;
  color: #ffffff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #6f6856;
}

@media (max-width: 480px) {
  .modal {
    padding: 20px;
    min-height: auto;
  }

  .modal-header h3 {
    font-size: 16px;
  }
}

/* Page Load Fade Animations  */
.fade-left,
.fade-right,
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.fade-show {
  opacity: 1;
  transform: translate(0);
}
