/* ============================================
   Custom Pages CSS
   All page-specific styles consolidated here
   ============================================ */

/* ============================================
   Pricing Page Styles
   ============================================ */
.pricing-item {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.pricing-item.featured {
  border: 3px solid #ff6b6b;
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #ff6b6b;
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.pricing-header h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.pricing-header .price {
  margin: 30px 0;
}

.pricing-header .price .currency {
  font-size: 24px;
  vertical-align: top;
  color: #2a2a2a;
}

.pricing-header .price .amount {
  font-size: 48px;
  font-weight: 700;
  color: #2a2a2a;
}

.pricing-header .price .period {
  font-size: 16px;
  color: #7a7a7a;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #7a7a7a;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: #ff6b6b;
  margin-right: 10px;
}

.pricing-button {
  margin-top: 30px;
}

.pricing-button .main-button {
  width: 100%;
  display: block;
  padding: 15px 30px;
  background: #ff6b6b;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-button .main-button:hover {
  background: #ee5a5a;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .pricing-item.featured {
    transform: scale(1);
  }
}

/* ============================================
   Contact Us Page Styles - Modern Design
   ============================================ */
.contact-page-wrapper {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-page-wrapper .container {
  position: relative;
}

/* Contact Info Cards Section */
.contact-info-cards {
  margin-bottom: 60px;
}

.contact-info-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border-top: 4px solid #fe3f40;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(3, 164, 237, 0.1), transparent);
  transition: left 0.5s;
}

.contact-info-card:hover::before {
  left: 100%;
}

.contact-info-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-top-color: #fe3f40;
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #fe3f40 0%, #dc3545 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(254, 63, 64, 0.3);
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 10px 25px rgba(254, 63, 64, 0.4);
}

.contact-card-icon i {
  font-size: 32px;
  color: #fff;
}

.contact-info-card h4 {
  color: #2a2a2a;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.contact-info-card:hover h4 {
  color: #fe3f40;
}

.contact-info-card p {
  color: #7a7a7a;
  margin: 0;
  line-height: 1.8;
  font-size: 15px;
}

.contact-info-card p a {
  color: #7a7a7a;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-info-card p a:hover {
  color: #dc3545;
  text-decoration: underline;
}

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

.contact-form-box {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #fe3f40, #dc3545, #fe3f40);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-header h3 {
  color: #2a2a2a;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.contact-form-header h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #fe3f40, #dc3545);
  border-radius: 2px;
}

.contact-form-header p {
  color: #7a7a7a;
  font-size: 16px;
  margin: 20px 0 0;
  line-height: 1.6;
}

.contact-validation-message {
  margin-bottom: 25px;
  min-height: 20px;
}

.contact-validation-message .alert {
  padding: 15px 25px;
  border-radius: 10px;
  margin-bottom: 0;
  font-size: 15px;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-validation-message .alert-success {
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.contact-validation-message .alert-danger {
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.contact-validation-message .alert i {
  margin-right: 10px;
  font-size: 18px;
}

/* Contact Form Styles */
.contact-form-wrapper {
  margin-top: 10px;
}

.contact-form-group {
  margin-bottom: 28px;
  position: relative;
}

.contact-form-label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2a2a2a;
  font-size: 15px;
  gap: 10px;
}

.contact-form-label i {
  color: #fe3f40;
  font-size: 17px;
  width: 20px;
  text-align: center;
}

.contact-form-label .required-star {
  color: #ff6b6b;
  margin-left: 3px;
  font-weight: 700;
}

.contact-form-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 15px;
  color: #2a2a2a;
  transition: all 0.3s ease;
  background-color: #fafafa;
  font-family: inherit;
}

.contact-form-input:focus {
  outline: none;
  border-color: #fe3f40;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(254, 63, 64, 0.1);
  transform: translateY(-2px);
}

.contact-form-input::placeholder {
  color: #999;
  opacity: 1;
  font-style: italic;
}

.contact-form-textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
}

.contact-form-textarea:focus {
  min-height: 160px;
}

.contact-submit-button {
  width: 100%;
  padding: 18px 35px;
  background: linear-gradient(135deg, #fe3f40 0%, #dc3545 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow: 0 8px 20px rgba(254, 63, 64, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  overflow: hidden;
}

.contact-submit-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.contact-submit-button:hover::before {
  width: 300px;
  height: 300px;
}

.contact-submit-button:hover {
  background: linear-gradient(135deg, #dc3545 0%, #fe3f40 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(254, 63, 64, 0.5);
}

.contact-submit-button:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 63, 64, 0.4);
}

.contact-submit-button i {
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.contact-submit-button .btn-text {
  position: relative;
  z-index: 1;
}

.contact-submit-button .btn-loader {
  position: relative;
  z-index: 1;
}

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

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-submit-btn .btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-submit-btn .btn-loader i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Contact Page Responsive Styles */
@media (max-width: 768px) {
  .contact-page-wrapper {
    padding: 50px 0;
  }
  
  .contact-info-cards {
    margin-bottom: 40px;
  }
  
  .contact-info-card {
    padding: 30px 20px;
    margin-bottom: 25px;
  }
  
  .contact-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .contact-card-icon i {
    font-size: 24px;
  }
  
  .contact-info-card h4 {
    font-size: 20px;
  }
  
  .contact-form-box {
    padding: 35px 25px;
    border-radius: 15px;
  }
  
  .contact-form-header h3 {
    font-size: 26px;
  }
  
  .contact-form-header p {
    font-size: 14px;
  }
  
  .contact-form-group {
    margin-bottom: 22px;
  }
  
  .contact-form-input {
    padding: 13px 18px;
    font-size: 14px;
  }
  
  .contact-submit-button {
    padding: 16px 30px;
    font-size: 15px;
  }
}

/* ============================================
   Privacy Policy Pages Styles
   ============================================ */
.content-section {
  margin-top: 40px;
}

.content-section h3 {
  color: #2a2a2a;
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-section p {
  color: #7a7a7a;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-section ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.content-section ul li {
  color: #7a7a7a;
  line-height: 1.8;
  margin-bottom: 10px;
}

.content-section strong {
  color: #2a2a2a;
}

/* ============================================
   Privacy Policy & Terms Pages Banner Override
   Remove red color from background
   ============================================ */
.policies-banner.main-banner {
  background: #f7f7f7 !important;
  background-image: none !important;
}

.policies-banner.main-banner:before,
.policies-banner.main-banner:after {
  display: none !important;
}

.policies-banner .left-content h2 em {
  color: #2a2a2a !important;
}

.policies-banner .left-content h2 span {
  color: #03a4ed !important;
}

