/* ========================================
   PRODUCT DETAIL PAGE STYLES
   ======================================== */

/* Breadcrumb */
.breadcrumb-section {
  background: #f8f9fa;
  padding: 100px 0 20px;
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: #2c5282;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #1e3a5f;
}

.breadcrumb span {
  color: #cbd5e0;
}

.breadcrumb .current {
  color: #1e3a5f;
  font-weight: 600;
}

/* Product Hero */
.product-hero {
  padding: 60px 0 80px;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-hero-image {
  position: relative;
}

.product-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-hero-content {
  padding: 20px;
}

.product-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 12px;
  line-height: 1.1;
}

.product-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #2c5282;
  margin-bottom: 24px;
}

.product-intro {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 32px;
}

.product-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Section Styling */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 16px;
}

.section-header p {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  color: #718096;
}

/* Product Purpose */
.product-purpose {
  padding: 80px 0;
  background: white;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.purpose-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--primary-navy);
}

.purpose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-left-color: var(--accent-blue);
}

.purpose-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.purpose-icon::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;
}

.purpose-card:hover .purpose-icon::before {
  width: 100px;
  height: 100px;
}

.purpose-card:hover .purpose-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 20px rgba(10, 31, 68, 0.3);
}

.purpose-icon i {
  font-size: 28px;
  color: white;
}

.purpose-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.purpose-card p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  text-align: justify;
}

/* Product Features */
.product-features {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--primary-navy);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-left-color: var(--accent-blue);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-icon::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;
}

.feature-card:hover .feature-icon::before {
  width: 100px;
  height: 100px;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 20px rgba(10, 31, 68, 0.3);
}

.feature-icon i {
  font-size: 28px;
  color: white;
}

.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.feature-card p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 16px;
}

.feature-card > p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-details li {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #4a5568;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.feature-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #48bb78;
  font-weight: bold;
}

/* Technical Specs */
.product-specs {
  padding: 80px 0;
  background: white;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

.spec-category {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid #2c5282;
}

.spec-category h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.spec-category h3 i {
  color: #2c5282;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid #e2e8f0;
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table td {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  padding: 12px 0;
  vertical-align: top;
}

.spec-table td:first-child {
  font-weight: 600;
  color: #1e3a5f;
  width: 40%;
}

.spec-table td:last-child {
  color: #4a5568;
}

/* Deployment Scenarios */
.deployment-scenarios {
  padding: 80px 0;
  background: white;
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.scenario-card {
  background: white;
  padding: 35px 30px;
  border-radius: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--primary-navy);
  display: flex;
  flex-direction: column;
}

.scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-left-color: var(--accent-blue);
}

.scenario-image {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.scenario-image::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;
}

.scenario-card:hover .scenario-image::before {
  width: 100px;
  height: 100px;
}

.scenario-card:hover .scenario-image {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 20px rgba(10, 31, 68, 0.3);
}

.scenario-image i {
  font-size: 28px;
  color: white;
  position: relative;
  z-index: 1;
}

.scenario-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.scenario-card > p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 20px;
}

.scenario-benefits {
  margin-top: auto;
  padding-top: 16px;
  border-top: 2px solid #e2e8f0;
}

.scenario-benefits h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.scenario-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scenario-benefits ul li {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--text-gray);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.scenario-benefits ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
  font-size: 16px;
}

/* Support Section */
.support-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.support-card {
  background: white;
  padding: 35px 30px;
  border-radius: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--primary-navy);
  text-align: left;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-left-color: var(--accent-blue);
}

.support-card i {
  font-size: 32px;
  color: var(--accent-blue);
  margin-bottom: 16px;
  display: block;
}

.support-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.support-card p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  text-align: justify;
}
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 16px;
}

.support-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-card ul li {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #4a5568;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.support-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #48bb78;
  font-weight: bold;
}

/* Quote Section */
.quote-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.quote-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.quote-info {
  color: white;
}

.quote-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.quote-info > p {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 28px;
  opacity: 0.95;
}

.quote-features {
  margin-bottom: 28px;
}

.quote-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
}

.quote-feature i {
  color: #48bb78;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.quote-feature span {
  line-height: 1.4;
}

.contact-direct {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border-left: 4px solid #48bb78;
}

.contact-direct p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
  line-height: 1.5;
}

.contact-direct p:last-child {
  margin-bottom: 0;
}

.contact-direct i {
  margin-right: 8px;
  color: #48bb78;
}

/* Quote Form */
.quote-form {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quote-form .form-group {
  margin-bottom: 20px;
}

.quote-form label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 8px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #1e3a5f;
  transition: all 0.3s ease;
  background: white;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #2c5282;
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.quote-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Lato', sans-serif;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.quote-form .btn-primary-large {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}

/* Related Products */
.related-products {
  padding: 80px 0;
  background: white;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.related-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card:hover img {
  transform: scale(1.05);
}

.related-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 10px;
  line-height: 1.3;
}

.related-content p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #718096;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.btn-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c5282;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-text:hover {
  color: #1e3a5f;
  gap: 12px;
}

/* Buttons */
.btn-primary-large,
.btn-secondary-large {
  padding: 16px 32px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  border-radius: 1000px;
}

.btn-primary-large {
  background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%);
  color: white;
}

.btn-primary-large:hover {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary-large {
  background: white;
  color: #2c5282;
  border: 2px solid #2c5282;
}

.btn-secondary-large:hover {
  background: #2c5282;
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-hero-grid,
  .quote-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .specs-grid,
  .deployments-grid {
    grid-template-columns: 1fr;
  }

  .purpose-grid,
  .features-grid,
  .scenarios-grid,
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 90px 0 15px;
  }

  .product-hero {
    padding: 40px 0 60px;
  }

  .product-hero-content h1 {
    font-size: 2.5rem;
  }

  .product-tagline {
    font-size: 1.2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .purpose-grid,
  .features-grid,
  .related-grid,
  .scenarios-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 32px 28px;
  }

  .quote-info h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .product-hero-content h1 {
    font-size: 2rem;
  }

  .product-hero-actions {
    flex-direction: column;
  }

  .btn-primary-large,
  .btn-secondary-large {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   NOTIFICATION STYLES
   ======================================== */

.quote-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  min-width: 320px;
  max-width: 500px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  animation: slideInRight 0.3s ease-out;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-left: 4px solid;
}

.quote-notification-success {
  border-left-color: #48bb78;
}

.quote-notification-error {
  border-left-color: #f56565;
}

.quote-notification-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.quote-notification-content i {
  font-size: 1.5rem;
  margin-top: 2px;
}

.quote-notification-success .quote-notification-content i {
  color: #48bb78;
}

.quote-notification-error .quote-notification-content i {
  color: #f56565;
}

.quote-notification-content span {
  flex: 1;
  line-height: 1.6;
  color: #2d3748;
}

.quote-notification-close {
  background: none;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  padding: 0;
  font-size: 1.2rem;
  transition: color 0.2s ease;
  line-height: 1;
}

.quote-notification-close:hover {
  color: #4a5568;
}

.quote-notification.fade-out {
  animation: slideOutRight 0.3s ease-out forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

/* reCAPTCHA Container Styling */
.turnstile-container {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.g-recaptcha {
  margin: 0 auto;
}

/* Mobile Notification Adjustments */
@media (max-width: 768px) {
  .quote-notification {
    right: 10px;
    left: 10px;
    min-width: auto;
    max-width: none;
  }
}
