/* Phones Page Styles - Aurora PC Tech */

/* Hero Section */
.hero-phones {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
  color: #e2e8f0;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.hero-phones::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.2);
  z-index: 0;
}

.hero-phones > * {
  position: relative;
  z-index: 1;
}

.hero-phones h1 {
  color: #00FFFF !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,180,216,0.5);
  font-weight: 700;
}

.hero-phones .lead {
  color: #cbd5e1;
  font-size: 1.25rem;
}

/* Phone Feature Cards */
.phone-feature-card {
  background: #16213e;
  border: 1px solid #00b4d8;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.phone-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,180,216,0.3);
  border-color: #00FFFF;
}

.phone-feature-card h3 {
  color: #00b4d8;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.phone-feature-card p {
  color: #cbd5e1;
}

.phone-feature-card .feature-icon {
  font-size: 2rem;
  color: #00b4d8;
  margin-bottom: 1rem;
}

/* Partner Logo Section */
.partner-logo-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0,180,216,0.4);
}

.partner-logo-card img {
  max-width: 200px;
  max-height: 80px;
  object-fit: contain;
}

/* Star Pulse Animation (for partner logos) */
.starPulse {
  animation: starPulse 2s ease-in-out infinite alternate;
}

@keyframes starPulse {
  from { box-shadow: 0 0 5px rgba(0,180,216,0.3), 0 0 10px rgba(0,180,216,0.2); }
  to { box-shadow: 0 0 15px rgba(0,180,216,0.6), 0 0 30px rgba(0,180,216,0.4); }
}

/* Section Styling */
.section-dark {
  background-color: #1a1a2e;
  color: #e2e8f0;
  padding: 3rem 0;
}

.section-light {
  background-color: #f8fafc;
  color: #1e293b;
  padding: 3rem 0;
}

/* Mission Section */
.mission-statement {
  background: rgba(0,180,216,0.1);
  border-left: 4px solid #00b4d8;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.mission-statement h2 {
  color: #00b4d8;
  margin-bottom: 1rem;
}

/* Contact Info Box */
.contact-info-box {
  background: #16213e;
  border: 1px solid #0077b6;
  border-radius: 8px;
  padding: 2rem;
  color: #e2e8f0;
}

.contact-info-box h3 {
  color: #00b4d8;
  margin-bottom: 1rem;
}

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

.contact-info-box a:hover {
  color: #00FFFF;
}

/* Pricing Table */
.pricing-table {
  background: #16213e;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pricing-table.featured {
  border-color: #00b4d8;
  transform: scale(1.05);
}

.pricing-table:hover {
  border-color: #00b4d8;
}

.pricing-table h3 {
  color: #00b4d8;
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-table .price {
  font-size: 2.5rem;
  color: #00FFFF;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-table ul {
  list-style: none;
  padding: 0;
  color: #cbd5e1;
}

.pricing-table ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,180,216,0.2);
}

.pricing-table ul li:before {
  content: "✓ ";
  color: #00b4d8;
  font-weight: bold;
}

/* Footer CTA override for phones page */
.footer-cta-phones {
  background-image: url('../images/NL.jpg') !important;
  background-size: cover;
  background-position: center;
  color: #e2e8f0 !important;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 8px;
  margin-top: 2rem;
  position: relative;
}

.footer-cta-phones::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22, 33, 62, 0.7);
  border-radius: 8px;
  z-index: 0;
}

.footer-cta-phones > * {
  position: relative;
  z-index: 1;
}

.footer-cta-phones a {
  color: #00b4d8 !important;
  text-decoration: none;
}

.footer-cta-phones a:hover {
  color: #00FFFF !important;
}
