/* Page-specific styles for all site pages */

/* General page header styles */
.page-header {
  background-color: #f9f9f9;
  padding: 150px 0 50px;
  text-align: center;
}

.page-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.page-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 18px;
}

/* Service Content Styles */
.service-content {
  padding: 80px 0;
}

.service-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.service-block:nth-child(even) {
  flex-direction: row-reverse;
}

.service-block .service-image {
  flex: 1;
}

.service-block .service-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.service-block .service-text {
  flex: 1;
}

.service-block .service-text h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark);
}

.service-block .service-text p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

/* Service Block Mobile Responsive */
@media (max-width: 992px) {
  .service-block {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .service-block:nth-child(even) {
    flex-direction: column;
  }
  
  .service-block .service-image,
  .service-block .service-text {
    flex: none;
    width: 100%;
  }
  
  .service-block .service-text h3 {
    font-size: 24px;
    text-align: center;
  }
  
  .service-block .service-text p {
    text-align: center;
  }
  
  .service-block .service-image img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 120px 0 40px;
  }
  
  .page-title {
    font-size: 28px;
  }
  
  .page-description {
    font-size: 16px;
  }
  
  .service-content {
    padding: 40px 0;
  }
  
  .service-block {
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .service-block .service-text h3 {
    font-size: 22px;
  }
  
  .service-block .service-text p {
    font-size: 15px;
  }
}

/* CTA Section */
.cta-section {
  background-color: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark);
}

.cta-description {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--gray);
  font-size: 18px;
}

/* Contact page styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-info {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--dark);
}

.social-links-contact {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links-contact a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all 0.3s ease;
}

.social-links-contact a:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-5px);
}

.contact-form-container {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--dark);
}

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

/* News/Blog Styles */
.filter-section {
  padding: 30px 0;
  background-color: #f9f9f9;
}

.filter-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.filter-label {
  flex: 0 0 20%;
}

.filter-label h5 {
  margin: 0;
  font-weight: 600;
  color: var(--dark);
}

.filter-selects {
  flex: 1;
  display: flex;
  gap: 20px;
}

.filter-select-group {
  flex: 1;
}

.news-section {
  padding: 60px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.news-item {
  transition: all 0.3s ease;
}

.news-item.hidden {
  display: none;
}

.news-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
}

.news-image img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-content {
  padding: 25px;
}

.news-tag {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.tag-primary {
  background-color: var(--primary);
}

.tag-secondary {
  background-color: var(--secondary);
}

.tag-success {
  background-color: var(--success);
}

.tag-danger {
  background-color: var(--danger);
}

.tag-warning {
  background-color: var(--warning);
  color: #212529;
}

.tag-info {
  background-color: var(--info);
}

.news-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
  line-height: 1.4;
}

.news-date {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
}

.news-excerpt {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.no-results {
  text-align: center;
  padding: 60px 0;
}

.no-results-content {
  max-width: 400px;
  margin: 0 auto;
}

.no-results i {
  font-size: 48px;
  color: var(--gray);
  margin-bottom: 20px;
}

.no-results h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.no-results p {
  color: var(--gray);
}

.pagination {
  text-align: center;
  margin-top: 40px;
}

.pagination ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li {
  margin: 0 5px;
}

.pagination li a {
  display: block;
  padding: 8px 15px;
  border-radius: 5px;
  color: var(--dark);
  background-color: #f1f1f1;
  transition: all 0.3s ease;
}

.pagination li.active a {
  background-color: var(--primary);
  color: white;
}

.pagination li.disabled a {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination li:not(.disabled):not(.active) a:hover {
  background-color: #e1e1e1;
}

.newsletter-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.newsletter-content p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-group {
  flex: 1;
}

/* Excel and Word Automation Pages */
.hero-section {
  padding: 150px 0 80px;
  color: white;
}

.hero-section h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-section .btn-light {
  background-color: white;
  color: var(--primary);
  font-weight: 600;
}

.hero-section .btn-outline {
  border: 2px solid white;
  color: white;
  background-color: transparent;
}

.hero-section .btn-outline:hover {
  background-color: white;
  color: var(--primary);
}

.stats-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.services-overview {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(175, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 28px;
  color: var(--primary);
}

.service-card:nth-child(even) .service-icon {
  background-color: rgba(25, 135, 84, 0.1);
}

.service-card:nth-child(even) .service-icon i {
  color: var(--secondary);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-features {
  margin-top: 20px;
  padding-left: 0;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.service-features i {
  color: var(--success);
  margin-right: 10px;
}

.case-studies-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.case-study-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.case-study-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.case-study-tag {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--success);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.case-study-content p {
  margin-bottom: 15px;
  color: var(--gray);
}

.case-study-content ul {
  padding-left: 20px;
}

.case-study-content li {
  margin-bottom: 8px;
  color: var(--gray);
}

.process-section {
  padding: 80px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.process-step p {
  color: var(--gray);
  margin: 0;
}

.faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--dark);
}

.faq-toggle {
  color: var(--primary);
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 20px;
  max-height: 1000px;
}

.faq-item.active .faq-toggle i {
  transform: rotate(180deg);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-text p {
  font-size: 18px;
  margin: 0;
}

.cta-button {
  text-align: center;
}

.cta-button .btn {
  margin-bottom: 10px;
}

.small-text {
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive adjustments for Excel page */
@media (max-width: 992px) {
  .hero-section {
    padding: 120px 0 60px;
  }
  
  .hero-section h1 {
    font-size: 36px;
  }
  
  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-section h1 {
    font-size: 30px;
  }
}

/* Bootstrap-style colored backgrounds */
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-success {
  background-color: var(--success) !important;
}

.bg-danger {
  background-color: var(--danger) !important;
}

.bg-warning {
  background-color: var(--warning) !important;
}

.bg-info {
  background-color: var(--info) !important;
}

.bg-light {
  background-color: var(--light) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.text-white {
  color: white !important;
}

.text-dark {
  color: var(--dark) !important;
}

/* Custom gradient backgrounds */
.bg-gradient-primary-secondary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.bg-gradient-secondary-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
}

/* Excel automation page specific styles */
.excel-hero-section {
  background: linear-gradient(135deg, rgba(175, 0, 0, 0.9) 0%, rgba(25, 135, 84, 0.9) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.excel-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/excel-pattern-bg.png');
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.excel-hero-section .container {
  position: relative;
  z-index: 2;
}

.excel-hero-section h1 {
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
}

.excel-hero-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 30px;
}

/* Contact page map */
.map-container {
  height: 400px;
  margin-bottom: -6px;
}

.map-container iframe {
  border: 0;
}

/* Process Steps */
.step-number {
  width: 60px;
  height: 60px;
  font-size: 24px;
  font-weight: bold;
}

/* Contact Section Styles */
.contact-section {
  padding: 80px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item:nth-child(even) .contact-icon {
  background-color: var(--secondary);
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(175, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 32px;
  color: var(--primary);
}

.benefit-card:nth-child(even) .benefit-icon {
  background-color: rgba(25, 135, 84, 0.1);
}

.benefit-card:nth-child(even) .benefit-icon i {
  color: var(--secondary);
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.benefit-card p {
  color: var(--gray);
  margin: 0;
}

/* Additional responsive adjustments */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Support Plans Styles */
.support-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.support-plan {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.support-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.support-plan.featured {
  border: 2px solid var(--secondary);
  box-shadow: 0 5px 20px rgba(25, 135, 84, 0.15);
}

.plan-tag {
  position: absolute;
  top: 5px;
  right: 30%;
  background-color: var(--secondary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.plan-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.plan-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.plan-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}

.plan-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray);
}

.plan-features {
  padding: 30px;
}

.plan-features ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.plan-features li i {
  margin-right: 10px;
}

.plan-features .fa-check {
  color: var(--success);
}

.plan-features .fa-times {
  color: var(--danger);
}

.plan-cta {
  padding: 0 30px 30px;
  text-align: center;
}

.custom-plan {
  margin-top: 40px;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.custom-plan-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.custom-plan-content p {
  margin-bottom: 20px;
  color: var(--gray);
}

/* Long-Term Support Styles */
.long-term-support {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.lts-feature {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.lts-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.lts-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(175, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.lts-icon i {
  font-size: 28px;
  color: var(--primary);
}

.lts-feature:nth-child(even) .lts-icon {
  background-color: rgba(25, 135, 84, 0.1);
}

.lts-feature:nth-child(even) .lts-icon i {
  color: var(--secondary);
}

.lts-feature h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.lts-feature p {
  color: var(--gray);
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--gray);
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--dark);
}

.author-info p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .support-plans {
    grid-template-columns: 1fr;
  }
  
  .long-term-support {
    grid-template-columns: 1fr;
  }
  
  .testimonials {
    grid-template-columns: 1fr;
  }
}

/* Support Plans Section */
.support-plans-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

/* Consultation Section */
.consultation-section {
  padding: 80px 0;
  background-color: white;
}

.consultation-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.consultation-text {
  flex: 1;
}

.consultation-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.consultation-text p {
  margin-bottom: 25px;
  color: var(--gray);
}

.consultation-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.consultation-benefits li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.consultation-benefits li i {
  color: var(--success);
  margin-right: 10px;
  margin-top: 3px;
}

.consultation-image {
  flex: 1;
}

.consultation-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

@media (max-width: 992px) {
  .consultation-content {
    flex-direction: column;
  }
  
  .consultation-text {
    order: 1;
  }
  
  .consultation-image {
    order: 0;
    margin-bottom: 30px;
  }
}

/* Website Packages/Pricing Section Styles */
.pricing-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.pricing-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
}

.pricing-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
}

.pricing-card.featured {
  border: 2px solid var(--secondary);
  box-shadow: 0 5px 20px rgba(25, 135, 84, 0.15);
  transform: scale(1.05);
  position: relative;
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
  position: absolute;
  top: 5px;
  right: 50%;
  transform: translateX(50%);
  background-color: var(--secondary);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 3;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(25, 135, 84, 0.2);
}

.pricing-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  background-color: #f9f9f9;
  position: relative;
}

.pricing-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.pricing-desc {
  color: var(--gray);
  margin: 0;
}

.pricing-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.pricing-feature i {
  color: var(--success);
  margin-right: 10px;
  margin-top: 3px;
}

.pricing-feature span {
  color: var(--gray);
}

.pricing-footer {
  padding: 20px 30px 30px;
  text-align: center;
}

.pricing-card.featured .pricing-footer .btn {
  padding: 12px 30px;
  font-size: 17px;
}

.pricing-card.featured .pricing-header {
  padding-top: 40px;
}

@media (max-width: 992px) {
  .pricing-container {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
} 