/* Static Pages Styles */

/* Main Content Background */
.page .main-content {
  background-color: #003257;
  min-height: 100vh;
  padding: 40px 0 80px;
  margin-bottom: 60px;
  position: relative;
}

.page .main-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b17931, transparent);
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 60px 0 1px;
  margin-bottom: 100px;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #b17931;
}

.page-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 1px;
}

/* Page Content */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.page-content h2 {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #b17931;
}

.page-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 40px 0 20px;
  padding-left: 15px;
  border-left: 4px solid #b17931;
}

.page-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #b17931;
  margin: 25px 0 15px;
}

.page-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.page-content ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.page-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.page-content ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #b17931;
  font-size: 10px;
  top: 8px;
}

.page-content ol {
  margin: 20px 0;
  padding-left: 25px;
  list-style: none;
  counter-reset: item;
}

.page-content ol li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  counter-increment: item;
}

.page-content ol li::before {
  content: counter(item) ')';
  position: absolute;
  left: -25px;
  color: #b17931;
  font-weight: 600;
}

.page-content strong {
  color: #b17931;
  font-weight: 600;
}

.page-content a {
  color: #b17931;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.page-content a:hover {
  border-bottom-color: #b17931;
}

/* Contact Page */
.contact-details,
.contact-form,
.response-time {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  border-left: 4px solid #b17931;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details h3,
.contact-form h3,
.response-time h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #fff;
}

.contact-details p {
  margin-bottom: 15px;
}

/* Contact Form Container */
.contact-form-container {
  margin-top: 30px;
}

.contact-success-message,
.contact-error-message {
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 25px;
  font-weight: 500;
}

.contact-success-message {
  background-color: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}

.contact-error-message {
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

.contact-success-message p,
.contact-error-message p {
  margin: 0;
}

/* Form Groups */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #fff;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #b17931;
  box-shadow: 0 0 0 3px rgba(177, 121, 49, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

.form-group select option {
  background-color: #003257;
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

/* Character Count */
.char-count {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}

/* Checkbox Group */
.checkbox-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #b17931;
}

.checkbox-group a {
  color: #b17931;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.checkbox-group a:hover {
  border-bottom-color: #b17931;
}

/* Error Messages */
.error-message {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #e74c3c;
  font-weight: 500;
}

/* Form Actions */
.form-actions {
  margin-top: 35px;
  text-align: center;
}

.submit-button {
  display: inline-block;
  padding: 15px 50px;
  background-color: #b17931;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(177, 121, 49, 0.3);
}

.submit-button:hover {
  background-color: #9a6628;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(177, 121, 49, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button:disabled {
  background-color: rgba(177, 121, 49, 0.5);
  cursor: not-allowed;
  transform: none;
}

.button-loading {
  display: none;
}

/* About Page */
.story-section,
.concept-section,
.message-section,
.vision-section,
.editor-section {
  margin-bottom: 50px;
}

/* Story Section */
.story-section {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-section h3 {
  font-size: 26px;
  margin-bottom: 25px;
}

/* Concept Section */
.concept-section {
  background-color: rgba(177, 121, 49, 0.08);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(177, 121, 49, 0.2);
}

.concept-section h3 {
  font-size: 26px;
  margin-bottom: 25px;
}

.concept-title {
  font-size: 20px;
  font-weight: 600;
  color: #b17931;
  text-align: center;
  margin: 25px 0;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid #b17931;
}

/* Message Section */
.message-section h3 {
  font-size: 26px;
  margin-bottom: 30px;
}

.message-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.message-item h4 {
  color: #b17931;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.message-item p {
  margin-bottom: 0;
}

/* Vision Section */
.vision-section {
  background-color: rgba(177, 121, 49, 0.08);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(177, 121, 49, 0.2);
  text-align: center;
}

.vision-section h3 {
  font-size: 26px;
  margin-bottom: 25px;
  border: none;
  padding-left: 0;
}

.vision-section p {
  font-size: 17px;
  line-height: 2;
}

/* Editor Section */
.editor-section {
  text-align: right;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.editor-name {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin: 0;
}

/* Advertising Page */
.media-data,
.ad-menu,
.contact-cta {
  margin-bottom: 50px;
}

.media-data {
  background-color: rgba(177, 121, 49, 0.1);
  border-radius: 12px;
  padding: 40px;
  color: #fff;
  border: 2px solid rgba(177, 121, 49, 0.3);
}

.media-data h3 {
  color: #fff;
  border-left-color: #b17931;
  margin-top: 0;
}

.media-data ul li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.media-data ul li::before {
  color: #b17931;
}

.ad-option {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ad-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(177, 121, 49, 0.3);
  border-color: rgba(177, 121, 49, 0.5);
}

.ad-option h4 {
  color: #b17931;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 22px;
}

.contact-cta {
  background-color: rgba(177, 121, 49, 0.1);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  border: 2px solid rgba(177, 121, 49, 0.3);
}

.contact-cta h3 {
  border: none;
  padding: 0;
  margin-bottom: 20px;
  color: #fff;
}

.contact-cta .note {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-cta .note small {
  color: rgba(255, 255, 255, 0.7);
}

/* Policy Page */
.policy-section {
  margin-bottom: 40px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid #b17931;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section h3 {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 0;
  border: none;
  color: #fff;
}

.contact-info-box {
  margin-top: 20px;
  padding: 25px;
  background-color: rgba(177, 121, 49, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(177, 121, 49, 0.3);
}

.contact-info-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.8;
}

.contact-info-box strong {
  color: #fff;
  font-size: 18px;
}

.contact-info-box a {
  color: #b17931;
}

.policy-date {
  margin-top: 60px;
  padding: 25px;
  background-color: rgba(177, 121, 49, 0.1);
  color: #fff;
  border-radius: 8px;
  text-align: center;
  border: 2px solid rgba(177, 121, 49, 0.3);
}

.policy-date p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.policy-date p:last-child {
  margin-bottom: 0;
}

.policy-date strong {
  color: #b17931;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    padding: 40px 20px 30px;
    margin: -40px -20px 40px;
  }

  .page-title {
    font-size: 36px;
  }

  .page-description {
    font-size: 14px;
  }

  .page-content h2 {
    font-size: 26px;
  }

  .page-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
  }

  .page-content h4 {
    font-size: 16px;
  }

  .contact-details,
  .contact-form,
  .response-time,
  .ad-option,
  .policy-section {
    padding: 20px;
  }

  .story-section,
  .concept-section,
  .vision-section {
    padding: 25px 20px;
  }

  .message-item {
    padding: 20px;
  }

  .concept-title {
    font-size: 18px;
    padding: 15px;
  }

  .vision-section p {
    font-size: 16px;
    line-height: 1.8;
  }

  .editor-name {
    font-size: 16px;
  }

  .media-data,
  .contact-cta {
    padding: 25px;
  }

  .submit-button {
    padding: 12px 40px;
    font-size: 15px;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* iOS zoom prevention */
  }
}
