/* ========================================
   MODERN CAMP SINGLE PAGE
   ======================================== */

:root {
  --primary-gradient: linear-gradient(135deg, #13314f 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ========== HERO SECTION ========== */
.camp-hero-modern {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.camp-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.camp-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.9) 100%);
  z-index: 2;
}

.camp-hero-inner {
  position: relative;
  z-index: 3;
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}

.camp-badge-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.camp-main-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.camp-main-subtitle {
  font-size: 1.375rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.camp-hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 1.25rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.stat-box i {
  font-size: 2.5rem;
  opacity: 0.9;
}

.stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== MAIN CONTENT ========== */
.camp-main-content {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

/* ========== CONTENT BLOCKS ========== */
.content-block {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
}

.content-block:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 2.5rem;
  background: var(--primary-gradient);
  color: #fff;
}

.block-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  flex-shrink: 0;
}

.block-icon i {
  font-size: 1.875rem;
}

.block-header h2 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}

.block-body {
  padding: 2.5rem;
}

.camp-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* ========== INCLUDES GRID ========== */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.include-item:hover {
  background: var(--primary-gradient);
  color: #fff;
  border-color: #13314f;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.include-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.include-item:hover .include-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(360deg);
}

.include-icon i {
  font-size: 2rem;
  color: #13314f;
  transition: color 0.4s ease;
}

.include-item:hover .include-icon i {
  color: #fff;
}

.include-text h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: #2c3e50;
  transition: color 0.4s ease;
}

.include-item:hover .include-text h4 {
  color: #fff;
}

.include-text p {
  font-size: 0.9375rem;
  margin: 0;
  color: #666;
  transition: color 0.4s ease;
}

.include-item:hover .include-text p {
  color: rgba(255, 255, 255, 0.9);
}

/* ========== INQUIRY FORM ========== */
.inquiry-block {
  border: 3px solid #13314f;
}

.inquiry-form-modern {
  max-width: 100%;
}

.form-field {
  margin-bottom: 0;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
}

.form-field label i {
  font-size: 1.125rem;
  color: #13314f;
}

.form-control-modern {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
  font-family: inherit;
}

.form-control-modern:focus {
  outline: none;
  border-color: #13314f;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-control-modern.error {
  border-color: #e74c3c;
}

.field-error {
  display: block;
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

textarea.form-control-modern {
  resize: vertical;
  min-height: 120px;
}

.info-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-left: 4px solid #2196f3;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.info-banner i {
  font-size: 1.5rem;
  color: #1976d2;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.info-banner p {
  margin: 0;
  color: #1565c0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.btn-submit-modern {
  width: 100%;
  padding: 1.25rem 2rem;
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.btn-submit-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(102, 126, 234, 0.4);
}

.btn-submit-modern i {
  font-size: 1.25rem;
  transition: transform 0.4s ease;
}

.btn-submit-modern:hover i {
  transform: translateX(4px);
}

/* Success Message */
.success-message {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-left: 4px solid #28a745;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.success-message i {
  font-size: 1.75rem;
  color: #155724;
  flex-shrink: 0;
}

.success-message strong {
  display: block;
  color: #155724;
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

.success-message p {
  margin: 0;
  color: #155724;
  font-size: 0.9375rem;
}

/* ========== SIDEBAR ========== */
.sidebar-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.sidebar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.sidebar-title i {
  font-size: 1.5rem;
  color: #13314f;
}

/* Info Card */
.info-card-gradient {
  background: var(--primary-gradient);
  color: #fff;
}

.info-card-gradient .sidebar-title {
  color: #fff;
}

.info-card-gradient .sidebar-title i {
  color: rgba(255, 255, 255, 0.9);
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.info-item-modern:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

.info-item-modern.highlight {
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.info-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}

.info-item-icon i {
  font-size: 1.5rem;
}

.info-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-item-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.info-item-value {
  font-size: 1.125rem;
  font-weight: 700;
}

/* CTA Card */
.cta-card-modern {
  background: var(--primary-gradient);
  color: #fff;
  text-align: center;
}

.cta-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.cta-icon-circle i {
  font-size: 2.5rem;
}

.cta-card-modern h3 {
  font-size: 1.625rem;
  margin-bottom: 1rem;
}

.cta-card-modern p {
  opacity: 0.95;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.btn-cta-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  background: #fff;
  color: #13314f;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.0625rem;
  transition: all 0.3s ease;
}

.btn-cta-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  color: #764ba2;
}

/* Contact Card */
.contact-card-modern {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #dee2e6;
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 16px;
}

.contact-icon i {
  font-size: 2rem;
}

.contact-card-modern h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #2c3e50;
}

.contact-card-modern p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-contact-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--primary-gradient);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-contact-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
  color: #fff;
}

/* Other Camps */
.other-camps-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
}

.other-camps-list-modern {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.other-camp-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.other-camp-modern:hover {
  background: var(--primary-gradient);
  color: #fff;
  border-color: #13314f;
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

.other-camp-content h5 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.other-camp-modern:hover .other-camp-content h5 {
  color: #fff;
}

.other-camp-duration {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #666;
  transition: color 0.3s ease;
}

.other-camp-modern:hover .other-camp-duration {
  color: rgba(255, 255, 255, 0.9);
}

.other-camp-modern > i {
  font-size: 1.25rem;
  color: #13314f;
  transition: all 0.3s ease;
}

.other-camp-modern:hover > i {
  color: #fff;
  transform: translateX(4px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .camp-main-title {
    font-size: 3rem;
  }

  .camp-main-subtitle {
    font-size: 1.25rem;
  }

  .includes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .camp-main-title {
    font-size: 2.5rem;
  }

  .camp-hero-stats {
    gap: 1rem;
  }

  .stat-box {
    padding: 1rem 1.5rem;
  }

  .block-header {
    padding: 1.5rem 1.75rem;
  }

  .block-body {
    padding: 1.75rem;
  }

  .block-header h2 {
    font-size: 1.5rem;
    color: #fff;
  }
}

@media (max-width: 576px) {
  .camp-hero-inner {
    padding: 3rem 0;
  }

  .camp-main-title {
    font-size: 2rem;
  }

  .camp-main-subtitle {
    font-size: 1.125rem;
  }

  .camp-hero-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-box {
    justify-content: flex-start;
  }
}

/* Hero Section */
.camp-hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #13314f;
}

.camp-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.camp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  z-index: 2;
}

.camp-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 4rem 0;
}

.camp-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.camp-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.camp-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-meta-item i {
  font-size: 1.5rem;
}

.hero-meta-item span {
  font-weight: 500;
  font-size: 1rem;
}

/* Content Section */
.camp-content-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.camp-content-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.camp-content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.camp-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.camp-section-title i {
  font-size: 2rem;
  color: #13314f;
}

.camp-description {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #555;
}

/* Included Grid */
.camp-included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border-left: 4px solid #13314f;
  transition: all 0.3s ease;
}

.included-item:hover {
  transform: translateX(8px);
  background: #13314f;
  color: #fff;
  border-left-color: #fff;
}

.included-item i {
  font-size: 1.75rem;
  color: #13314f;
  transition: color 0.3s ease;
}

.included-item:hover i {
  color: #fff;
}

.included-item span {
  font-weight: 500;
  font-size: 1rem;
}

/* Inquiry Form */
.camp-inquiry-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(102, 126, 234, 0.15);
  border: 2px solid #13314f;
}

.camp-inquiry-form {
  margin-top: 2rem;
}

.camp-form-group {
  margin-bottom: 1.75rem;
}

.camp-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.camp-label i {
  font-size: 1.125rem;
  color: #13314f;
}

.camp-input,
.camp-textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.camp-input:focus,
.camp-textarea:focus {
  outline: none;
  border-color: #13314f;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.camp-textarea {
  resize: vertical;
  min-height: 120px;
}

.camp-input.is-invalid,
.camp-textarea.is-invalid {
  border-color: #dc3545;
}

.camp-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.camp-info-box {
  display: flex;
  align-items: start;
  gap: 1rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-left: 4px solid #2196f3;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.camp-info-box i {
  font-size: 1.5rem;
  color: #1976d2;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.camp-info-box strong {
  display: block;
  color: #1565c0;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.camp-info-box p {
  margin: 0;
  color: #1565c0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.camp-submit-btn {
  width: 100%;
  padding: 1.125rem 2rem;
  background: #13314f;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.camp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.camp-submit-btn i {
  font-size: 1.25rem;
}

/* Alert */
.camp-alert {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.camp-alert-success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-left: 4px solid #28a745;
}

.camp-alert i {
  font-size: 1.5rem;
  color: #155724;
  flex-shrink: 0;
}

.camp-alert strong {
  display: block;
  color: #155724;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.camp-alert p {
  margin: 0;
  color: #155724;
  font-size: 0.9375rem;
}

/* Sidebar */
.camp-sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.camp-sidebar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-title i {
  font-size: 1.5rem;
  color: #13314f;
}

.sidebar-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Info Card */
.camp-info-card {
  background: #13314f;
  color: #fff;
}

.camp-info-card .sidebar-title {
  color: #fff;
}

.camp-info-card .sidebar-title i {
  color: rgba(255, 255, 255, 0.9);
}

.camp-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-row-highlight {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.5rem;
}

.info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.info-value {
  font-size: 1.125rem;
  font-weight: 600;
}

/* CTA Card */
.camp-cta-card {
  background: #13314f;
  color: #fff;
  text-align: center;
}

.cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.cta-icon i {
  font-size: 2.5rem;
}

.camp-cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.camp-cta-card p {
  opacity: 0.95;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.camp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #fff;
  color: #13314f;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.camp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #764ba2;
}

.camp-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #13314f;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.camp-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  color: #fff;
}

/* Other Camps List */
.other-camps-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.other-camp-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.other-camp-item:hover {
  background: #13314f;
  color: #fff;
  transform: translateX(8px);
  border-color: #13314f;
}

.other-camp-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.other-camp-title {
  font-weight: 600;
  font-size: 1rem;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.other-camp-item:hover .other-camp-title {
  color: #fff;
}

.other-camp-meta {
  font-size: 0.875rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.3s ease;
}

.other-camp-item:hover .other-camp-meta {
  color: rgba(255, 255, 255, 0.9);
}

.other-camp-item i:last-child {
  font-size: 1.25rem;
  color: #13314f;
  transition: all 0.3s ease;
}

.other-camp-item:hover i:last-child {
  color: #fff;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .camp-hero-title {
    font-size: 2.5rem;
  }

  .camp-hero-subtitle {
    font-size: 1.125rem;
  }

  .camp-hero-meta {
    gap: 1rem;
  }

  .hero-meta-item {
    padding: 0.75rem 1.25rem;
  }

  .camp-content-card {
    padding: 1.75rem;
  }

  .camp-inquiry-card {
    padding: 2rem;
  }

  .camp-section-title {
    font-size: 1.5rem;
  }

  .camp-included-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .camp-hero-title {
    font-size: 2rem;
  }

  .camp-hero-meta {
    flex-direction: column;
    gap: 0.75rem;
  }
}
