/* AI Call Transcription & Quality Intelligence Service Page Styles */

/* CSS Variables */
:root {
  --primary: #3A5B4B;
  --secondary: #67451A;
  --accent: #D9B53D;
  --light: #E2DBC7;
  --sage: #7FA78B;
  --text-dark: #3A5B4B;
  --text-light: #FCF9F2;
  --bg-light: #F8F7F4;
  --border: #E2DBC7;
}

/* Fixed Header - Simple like other pages */
.header {
  position: relative !important;
  top: 0 !important;
  z-index: 1;
  background: #fff;
  border-bottom: 1px solid rgba(2, 6, 23, 0.06);
}

.header.is-scrolled {
  box-shadow: none !important;
}

/* Hero Header Section */
.hero-header {
  background: #3a5b4b; /* Solid color instead of gradient */
  color: #ffffff;
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  margin: 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}





.hero-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
  position: relative;
  z-index: 9;
  color: #d9b53d;
}

.hero-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
  position: relative;
  z-index: 2;
  color: #ffffff;
}

/* Introduction Section */
.intro-section {
  padding: 40px 0;
  background: white;
  position: relative;
}

.intro-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

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

.intro-image .image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(58, 91, 75, 0.15);
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-image .image-wrapper:hover {

  box-shadow: 0 20px 50px rgba(58, 91, 75, 0.2);
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;
}



.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

/* What We Deliver Section */
.deliver-section {
  padding: 40px 0;
  background:  #FCF9F2;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin: 20px 0 40px;
  font-weight: 600;
}

.deliver-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.deliver-item {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(58, 91, 75, 0.1);
  position: relative;
  overflow: hidden;
}

.deliver-item:hover {
  box-shadow: 0 20px 50px rgba(58, 91, 75, 0.25);
}

.deliver-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.deliver-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #daecd4;
  border-radius: 50%;
  flex-shrink: 0;
}

.deliver-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.deliver-item h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.deliver-item ul {
  list-style: none;
  
  padding: 0;
}

.deliver-item li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.deliver-item li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-dark);
  font-weight: bold;
}

/* How It Works Section */
.process-section 
{
  background: #Ffffff;
  padding: 0 60px 80px 60px;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin: 20px 0 40px;
  font-weight: 600;
  
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--text-light);
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(58, 91, 75, 0.1);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}


.process-step h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.process-step p {
  color: var(--text-gray);
  line-height: 1.6;
}


  /* Why RuralShores Section */
.advantage-section {
  padding: 40px 0;
  background: var(--bg-light);
}

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

.advantage-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.advantage-image {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(58, 91, 75, 0.15);
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(58, 91, 75, 0.2);
}

.advantage-image img {
  width: 100%;
  height: auto;
  display: block;
}

.advantage-right {
  display: flex;
  align-items: center;
}

.advantage-text {
  text-align: left;
}

.advantage-text h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.advantage-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.advantage-list li {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 25px;
  position: relative;
}

.advantage-list li:last-child {
  margin-bottom: 0;
}

.advantage-list li::before {
  content: "•";
  color: var(--primary);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.advantage-note {
  text-align: left;
  padding: 5px;
  
  color: var(--text-gray);
  border-radius: 8px;
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

/* Responsive Design for Why RuralShores Section */
@media (max-width: 1024px) {
  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .advantage-image {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .advantage-image {
    max-width: 100%;
  }
  
  .advantage-text h3 {
    font-size: 1.3rem;
  }
  
  .advantage-list li {
    font-size: 0.95rem;
  }
}



/* Enterprise Tiles Section */
.enterprise-tiles-section {
  padding: 40px 0;
  background: #f8f9fa;
}

.enterprise-tiles-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
  font-weight: 600;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.enterprise-tile {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  
}

.enterprise-tile:hover {
 
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.tile-header {
  background: transparent;
  color: var(--primary);
  padding: 10px;
  text-align: left;
}

.tile-header h3 {
  margin: 0;
  padding:20px;
  font-size: 1.4rem;
  font-weight: 600;
}

.tile-content {
  padding: 0 20px 0 20px;
}

.tile-intro {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 5px;
  line-height: 1.6;
}

.custom-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-check-list li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.6;
}

.custom-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;

  width: 40px;
  height: 40px;
  background: #daecd4; /* soft purple background */
  color: #3a5b4b; 
        /* purple tick */
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-list li:last-child {
  margin-bottom: 0;
}

.governance-note {
  margin-top: 20px;
  padding: 15px;
  background: rgba(58, 91, 75, 0.05);
  border-left: 4px solid var(--primary);
  border-radius: 4px;
}

.governance-note p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--primary);
  font-style: italic;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .enterprise-tiles-section {
    padding: 40px 0;
  }
  
  .enterprise-tiles-section .section-title {
    font-size: 2rem;
  }
  
  .tiles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tile-header {
    padding: 15px;
  }
  
  .tile-header h3 {
    font-size: 1.1rem;
  }
  
  .tile-content {
    padding: 20px;
  }
  
  .tab-intro {
    font-size: 0.95rem;
  }
  
  .tabs-navigation {
    flex-direction: column;
    padding: 12px;
  }
  
  .tab-button {
    margin: 2px 0;
    padding: 16px 20px;
    text-align: left;
  }
  
  .tab-button.active {
    border-bottom: none;
    border-left: 3px solid #3A5B4B;
    border-radius: 0 4px 4px 0;
  }
  
  .tabs-content {
    padding: 24px;
  }
  
  .tab-intro {
    font-size: 0.95rem;
  }
  
  .enterprise-list li,
  .impact-list li,
  .governance-list li {
    font-size: 0.9rem;
    padding: 10px 0;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-header h1 {
    font-size: 2.5rem;
  }
  
  .intro-grid,
  .advantage-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .intro-text h2,
  .section-title {
    font-size: 2rem;
  }
  
  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-header {
    padding: 40px 0;
  }
  
  .hero-header h1 {
    font-size: 2rem;
  }
  
  .hero-header p {
    font-size: 1.1rem;
  }
  
  .intro-section,
  .deliver-section,
  .process-section,
  .usecases-section,
  .impact-section,
  .governance-section,
  .advantage-section,
  .cta-section {
    padding: 40px 0;
  }
  
  .intro-text h2,
  .section-title,
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .deliver-grid,
  .usecases-grid,
  .governance-points {
    grid-template-columns: 1fr;
  }
  
  .impact-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
  
  .impact-metric {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-header h1 {
    font-size: 1.8rem;
  }
  
  .intro-text h2,
  .section-title,
  .cta-section h2 {
    font-size: 1.5rem;
  }
  
  .deliver-item,
  .process-step,
  .usecase-item,
  .impact-item,
  .governance-item,
  .advantage-point {
    padding: 30px 20px;
  }
  
  .intro-text p,
  .deliver-item li,
  .process-step p,
  .governance-item h4,
  .advantage-point h4 {
    font-size: 1rem;
  }
  
  .deliver-item h3,
  .process-step h3,
  .usecase-item h3 {
    font-size: 1.2rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design for Governance Section */
@media (max-width: 1024px) {
  .governance-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 25px;
  }
  
  .governance-intro h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .governance-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    gap: 20px;
  }
  
  .governance-intro {
    margin-bottom: 2rem;
  }
  
  .governance-intro h3 {
    font-size: 1.2rem;
  }
  
  .governance-item {
    padding: 25px;
  }
  
  .governance-item h4 {
    font-size: 1.1rem;
  }
  
  .governance-item p {
    font-size: 0.9rem;
  }
}

/* Responsive Design for Business Impact */
@media (max-width: 1024px) {
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .impact-image {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .impact-image {
    max-width: 100%;
  }
  
  .impact-text h3 {
    font-size: 1.3rem;
  }
  
  .impact-text p {
    font-size: 0.95rem;
  }
}

/* Responsive Design for Enterprise Use Cases */
@media (max-width: 1024px) {
  .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .usecases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .usecase-image {
    height: 180px;
  }
  
  .usecase-content {
    padding: 20px;
  }
}

/* Print Styles */
@media print {
  .hero-header,
  .cta-section,
  .topbar,
  .header {
    display: none;
  }
  
  .intro-section,
  .deliver-section,
  .process-section,
  .usecases-section,
  .impact-section,
  .governance-section,
  .advantage-section {
    padding: 40px 0;
    page-break-inside: avoid;
  }
  
  .deliver-item,
  .process-step,
  .usecase-item,
  .impact-item,
  .governance-item,
  .advantage-point {
    box-shadow: none;
    border: 1px solid var(--border);
  }
}

/* Accessibility */
.btn:focus,
.deliver-item:focus,
.process-step:focus,
.usecase-item:focus,
.impact-item:focus,
.governance-item:focus,
.advantage-point:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .deliver-item,
  .process-step,
  .usecase-item,
  .impact-item,
  .governance-item,
  .advantage-point {
    border: 2px solid var(--text-dark);
  }
  
  .btn-outline {
    border-width: 3px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-header::before {
    animation: none;
  }
}
