/* =========================================================
   Enterprise Software Development Page Styles
   File: assets/css/enterprise-software.css
   ========================================================= */

:root {
  --ent-primary: #1c3fa8;
  --ent-primary-dark: #142c7a;
  --ent-accent: #2f6fed;
  --ent-dark: #101828;
  --ent-gray-700: #344054;
  --ent-gray-500: #667085;
  --ent-gray-300: #d0d5dd;
  --ent-gray-100: #f2f4f7;
  --ent-white: #ffffff;
  --ent-radius: 14px;
  --ent-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  --ent-shadow-hover: 0 16px 40px rgba(16, 24, 40, 0.14);
  --ent-transition: all 0.3s ease;
}

.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.pt-60 { padding-top: 60px; }
.pb-140 { padding-bottom: 140px; }
.mb-70 { margin-bottom: 70px; }

/* =========================================================
   HERO SECTION
   ========================================================= */
.aiagent-hero-section {
  padding: 120px 0 90px;
  background: linear-gradient(135deg, #0f1f4d 0%, #1c3fa8 55%, #2f6fed 100%);
  color: var(--ent-white);
  overflow: hidden;
}

.aiagent-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.aiagent-hero-title {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--ent-white);
}

.aiagent-hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 34px;
  max-width: 560px;
}

.aiagent-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  background: var(--ent-white);
  color: var(--ent-primary);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--ent-transition);
}

.hero-primary-btn:hover {
  background: var(--ent-gray-100);
  color: var(--ent-primary-dark);
  transform: translateY(-2px);
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  background: transparent;
  color: var(--ent-white);
  font-weight: 600;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--ent-transition);
}

.hero-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--ent-white);
  transform: translateY(-2px);
}

.hero-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

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

/* =========================================================
   INTRO SECTION
   ========================================================= */
.mobile-intro-section {
  background: var(--ent-white);
}

.intro-badge,
.service-badge,
.why-badge,
.industry-badge,
.process-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(47, 111, 237, 0.1);
  color: var(--ent-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--ent-dark);
  max-width: 780px;
  margin: 0 auto 20px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ent-gray-500);
  max-width: 800px;
  margin: 0 auto;
}

.intro-big-image {
  margin-top: 50px;
}

.intro-image-wrapper {
  border-radius: var(--ent-radius);
  overflow: hidden;
  box-shadow: var(--ent-shadow);
}

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

/* =========================================================
   SECTION HEADER (shared)
   ========================================================= */
.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--ent-dark);
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.3;
}

.section-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ent-gray-500);
  max-width: 720px;
  margin: 0 auto;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
  background: var(--ent-gray-100);
}

.service-card {
  background: var(--ent-white);
  border-radius: var(--ent-radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--ent-shadow);
  transition: var(--ent-transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ent-shadow-hover);
}

.service-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 26px 26px 30px;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ent-dark);
  margin-bottom: 12px;
}

.service-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ent-gray-500);
  margin: 0;
}

.ai-mention-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
}

.ai-mention-card .service-image img {
  height: 100%;
  min-height: 200px;
}

.ai-mention-card .service-content {
  padding: 34px 40px;
}

/* =========================================================
   WHY ROVISTA SECTION
   ========================================================= */
.why-rovista-section {
  background: var(--ent-white);
}

.why-card {
  background: var(--ent-gray-100);
  border-radius: var(--ent-radius);
  padding: 34px 28px;
  height: 100%;
  transition: var(--ent-transition);
  border: 1px solid transparent;
}

.why-card:hover {
  background: var(--ent-white);
  border-color: var(--ent-gray-300);
  box-shadow: var(--ent-shadow);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ent-primary), var(--ent-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon i {
  font-size: 22px;
  color: var(--ent-white);
}

.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ent-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ent-gray-500);
  margin: 0;
}

/* =========================================================
   INDUSTRIES SECTION
   ========================================================= */
.industries-section {
  background: var(--ent-gray-100);
}

.industry-card {
  background: var(--ent-white);
  border-radius: var(--ent-radius);
  padding: 30px 24px;
  height: 100%;
  text-align: left;
  box-shadow: var(--ent-shadow);
  transition: var(--ent-transition);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ent-shadow-hover);
}

.industry-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(47, 111, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.industry-icon i {
  font-size: 20px;
  color: var(--ent-primary);
}

.industry-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ent-dark);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ent-gray-500);
  margin: 0;
}

/* =========================================================
   PROCESS SECTION
   ========================================================= */
.process-section {
  background: var(--ent-white);
}

.process-card {
  position: relative;
  background: var(--ent-gray-100);
  border-radius: var(--ent-radius);
  padding: 40px 26px 30px;
  height: 100%;
  text-align: center;
  transition: var(--ent-transition);
}

.process-card:hover {
  background: var(--ent-white);
  box-shadow: var(--ent-shadow);
  transform: translateY(-4px);
}

.process-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 26px;
  font-weight: 800;
  color: rgba(47, 111, 237, 0.18);
}

.process-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ent-primary), var(--ent-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-icon i {
  font-size: 22px;
  color: var(--ent-white);
}

.process-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ent-dark);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ent-gray-500);
  margin: 0;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.tp-contact-area.cta-bg {
  padding: 90px 0;
  background: linear-gradient(135deg, #0f1f4d 0%, #1c3fa8 55%, #2f6fed 100%);
  text-align: center;
  color: var(--ent-white);
}

.tp-contact-inner {
  max-width: 720px;
  margin: 0 auto;
}

.tp-contact-inner .title {
  font-size: 32px;
  font-weight: 700;
  color: var(--ent-white);
  margin-bottom: 18px;
}

.tp-contact-inner p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.tp-btn-one {
  position: relative;
  display: inline-block;
  padding: 16px 34px;
  background: var(--ent-white);
  color: var(--ent-primary);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  transition: var(--ent-transition);
}

.tp-btn-one:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tp-btn-one .btn-wrap {
  display: block;
  position: relative;
}

.tp-btn-one .text-two {
  display: none;
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.tp-faq-area-2 {
  background: var(--ent-white);
}

.tp-faq-inner-2 {
  max-width: 860px;
  margin: 0 auto;
}

.title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.sec-title-2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--ent-dark);
}

.tp-faq-item.style-2 {
  border: 1px solid var(--ent-gray-300);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 18px;
  background: var(--ent-white);
  transition: var(--ent-transition);
}

.tp-faq-item.style-2:hover {
  border-color: var(--ent-primary);
  box-shadow: var(--ent-shadow);
}

.tp-faq-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ent-dark);
  margin-bottom: 12px;
}

.tp-faq-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ent-gray-500);
  margin: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .aiagent-hero-grid {
    grid-template-columns: 1fr;
  }

  .aiagent-hero-title {
    font-size: 36px;
  }

  .ai-mention-card {
    grid-template-columns: 1fr;
  }

  .ai-mention-card .service-image img {
    height: 200px;
  }

  .section-title,
  .section-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .pt-100 { padding-top: 60px; }
  .pb-100 { padding-bottom: 60px; }

  .aiagent-hero-section {
    padding: 90px 0 60px;
    text-align: center;
  }

  .aiagent-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .aiagent-hero-btns {
    justify-content: center;
  }

  .aiagent-hero-title {
    font-size: 30px;
  }

  .tp-contact-inner .title {
    font-size: 26px;
  }

  .tp-faq-item.style-2 {
    padding: 18px 20px;
  }
}


.hero-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px; /* Optional */
}

.tpbtn{
      background: var(--ent-white);
  color: var(--ent-primary);
       font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 15px 28px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}