/*
 * Custom Pricing Section Styles
 * Imported from webmeo template
 */

:root {
  --pricing-theme: #140c3a; /* MeoHost koyu mor/mavi */
  --pricing-theme2: #f9bd06; /* MeoHost sarı */
  --pricing-header: #140c3a; /* Koyu mor/mavi başlık */
  --pricing-text: #445375;
  --pricing-border: #140c3a;
  --pricing-bg: #F3F7FB;
  --pricing-white: #fff;
}

/* Utility Classes */
.fix {
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.wow {
  visibility: hidden;
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Font Awesome Icons */
.fa-solid, .fa-light {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fa-light {
  font-weight: 300;
}

.fa-check:before {
  content: "\f00c";
}

.fa-xmark:before {
  content: "\f00d";
}

.fa-circle-question:before {
  content: "\f059";
}

.fa-arrow-right-long:before {
  content: "\f178";
}

/* Section Background */
.section-bg {
  background-color: var(--pricing-bg);
}

.section-padding {
  padding: 130px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

/* Pricing Section */
.pricing-section {
  position: relative;
}

.pricing-section .pricing-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.pricing-section .pricing-shape img {
  width: 100%;
  height: 100%;
}

/* Pricing Tab Header */
.pricing-tab-header {
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
}

@media (max-width: 767px) {
  .pricing-tab-header {
    margin-bottom: 0;
  }
}

.pricing-tab-header .arrow-shape {
  position: absolute;
  left: 59.5%;
  top: 0;
  animation: arrowMove 2s ease-in-out infinite;
}

@media (max-width: 1199px) {
  .pricing-tab-header .arrow-shape {
    display: none;
  }
}

.pricing-tab-header .nav {
  display: flex;
  align-items: center;
  gap: 0;
  background-color: var(--pricing-white);
  border: 1px solid var(--pricing-border);
  border-radius: 100px;
  padding: 6px;
  justify-content: center;
  max-width: 225px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .pricing-tab-header .nav {
    max-width: 325px;
  }
}

@media (max-width: 575px) {
  .pricing-tab-header .nav {
    gap: 15px;
    max-width: 225px;
  }
}

.pricing-tab-header .nav .nav-link {
  text-align: center;
  padding: 18px 25px;
  border-radius: 100px;
  line-height: 1;
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--pricing-header);
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .pricing-tab-header .nav .nav-link {
    padding: 14px 45px;
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .pricing-tab-header .nav .nav-link {
    padding: 12px 20px;
    font-size: 14px;
  }
}

.pricing-tab-header .nav .nav-link.active {
  position: relative;
  background-color: var(--pricing-theme);
  color: var(--pricing-white);
}

.pricing-tab-header .save-text {
  font-weight: 500;
  color: var(--pricing-theme);
  font-size: 18px;
  text-align: center;
  margin-left: 40%;
}

/* Pricing Items */
.pricing-items {
  margin-top: 30px;
  background-color: var(--pricing-white);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .pricing-items {
    padding: 30px;
  }
}

.pricing-items:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-items.style-2 {
  padding: 1.5rem;
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 600px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.pricing-items.style-2:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.pricing-items.style-2 .top-text {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  display: inline-block;
  padding: 10px 28px;
  text-align: center;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f9bd06 0%, #ffa500 100%);
  width: auto;
  min-width: 150px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(249, 189, 6, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
  transition: all 0.3s ease;
}

.pricing-items.style-2 .top-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  border-radius: 25px;
  opacity: 0.5;
}

.pricing-items.style-2 .top-text::after {
  display: none;
}

.pricing-items.style-2:hover .top-text {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 8px 25px rgba(249, 189, 6, 0.6);
}

.pricing-items.style-2 .pricing-header-2 {
  margin-top: 30px;
}

.pricing-items.style-2 .pricing-header-2 .price-list {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.pricing-items.style-2 .pricing-header-2 .price-list del {
  font-weight: 500;
  color: var(--pricing-text);
}

.pricing-items.style-2 .pricing-header-2 .price-list span {
  padding: 10px 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(249, 189, 6, 0.15) 0%, rgba(249, 189, 6, 0.08) 100%);
  line-height: 1;
  color: #140c3a;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.2px;
  border: 1px solid rgba(249, 189, 6, 0.3);
}

.pricing-items.style-2 .pricing-header-2 h2 {
  text-align: center;
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #140c3a 0%, #2d1a6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -2px;
  line-height: 1.2;
  margin-bottom: 5px;
  text-shadow: 0 2px 20px rgba(20, 12, 58, 0.1);
}

.pricing-items.style-2 .pricing-header-2 h2 sub {
  font-size: 18px;
  font-weight: 600;
  color: #888888;
  text-transform: lowercase;
  margin-left: -10px;
  vertical-align: baseline;
  background: none;
  -webkit-text-fill-color: #888888;
  letter-spacing: 0;
}

.pricing-items.style-2 p {
  margin-top: 20px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
  color: #666666;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Pricing List */
.pricing-items .pricing-list {
  margin-top: 10px;
  flex-grow: 1;
}

@media (max-width: 575px) {
  .pricing-items .pricing-list {
    margin-top: 10px;
  }
}

.pricing-items .pricing-list li {
  font-weight: 400;
  display: block;
  color: #4a5568;
  line-height: 1.6;
  padding: 0;
  margin-bottom: 12px;
}

.pricing-items .pricing-list li:not(:last-child) {
  margin-bottom: 12px;
}

.pricing-items .pricing-list li span {
  display: inline;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.pricing-items .pricing-list li span i.fa-check {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 12px;
  font-size: 0;
  color: transparent;
  vertical-align: middle;
}

/* CPU İkonu */
.pricing-items .pricing-list li:nth-child(1) span i.fa-check {
  background-image: url('/assets/images/icon-85.svg');
}

/* RAM İkonu */
.pricing-items .pricing-list li:nth-child(2) span i.fa-check {
  background-image: url('/assets/images/icon-84.svg');
}

/* Disk İkonu */
.pricing-items .pricing-list li:nth-child(3) span i.fa-check {
  background-image: url('/assets/images/icon-134.svg');
}

/* Trafik İkonu */
.pricing-items .pricing-list li:nth-child(4) span i.fa-check {
  background-image: url('/assets/images/icon-76.svg');
}

/* Bağlantı/IP İkonu */
.pricing-items .pricing-list li:nth-child(5) span i.fa-check {
  background-image: url('/assets/images/icon-28.svg');
}

/* Kontrol Paneli İkonu */
.pricing-items .pricing-list li:nth-child(6) span i.fa-check {
  background-image: url('/assets/images/icon-15.svg');
}

/* Altyapı İkonu (Varsayılan Tik) */
.pricing-items .pricing-list li:nth-child(7) span i.fa-check {
  background-image: url('/webmeo/assets/img/check-mark.png');
}

/* Küçük cihazlarda ikonların görünmesini sağla */
@media (max-width: 991px) {
  .pricing-items .pricing-list li span i.fa-check {
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    margin-right: 10px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    vertical-align: middle !important;
  }
}

@media (max-width: 767px) {
  .pricing-items .pricing-list li span i.fa-check {
    width: 16px !important;
    height: 16px !important;
    margin-right: 8px !important;
  }
}

@media (max-width: 575px) {
  .pricing-items .pricing-list li span i.fa-check {
    width: 16px !important;
    height: 16px !important;
    margin-right: 8px !important;
  }
}

.pricing-items .pricing-list li span strong {
  color: #1e293b;
  font-weight: 600;
  margin-right: 5px;
  font-size: 14px;
}

.pricing-items .pricing-list li i {
  font-weight: 500;
}

.pricing-items .pricing-list li.color-2 span i {
  color: #FF1010;
}

/* Pricing Button */
.pricing-items .pricing-button {
  margin-top: auto;
  padding-top: 30px;
}

@media (max-width: 575px) {
  .pricing-items .pricing-button {
    margin-top: auto;
    padding-top: 20px;
  }
}

.pricing-items .pricing-button .pricing-btn {
  display: inline-block;
  background-color: transparent;
  color: var(--pricing-theme);
  font-size: 16px;
  font-weight: 600;
  padding: 20px 40px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  position: relative;
  line-height: 1;
  width: 100%;
  border-radius: 36px;
  border: 1px solid var(--pricing-theme);
  text-align: center;
}

.pricing-items .pricing-button .pricing-btn i {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .pricing-items .pricing-button .pricing-btn {
    padding: 16px 32px;
  }
}

@media (max-width: 575px) {
  .pricing-items .pricing-button .pricing-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

.pricing-items .pricing-button .pricing-btn:hover {
  background-color: var(--pricing-theme);
  color: var(--pricing-white);
}

.pricing-items.style-2 .pricing-btn {
  background-color: var(--pricing-theme);
  color: var(--pricing-white);
  padding: 16px 40px;
}

.pricing-items.style-2 .pricing-btn:hover {
  background-color: var(--pricing-header);
}

/* Active/Featured Pricing Card */
.pricing-items.style-2.active {
  border: 2px solid #f9bd06;
  box-shadow: 0 8px 32px rgba(249, 189, 6, 0.2), 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: scale(1.02);
}

.pricing-items.style-2.active .top-text {
  background: linear-gradient(135deg, #140c3a 0%, #2d1a6b 100%);
  color: #f9bd06;
  border-color: rgba(249, 189, 6, 0.5);
  box-shadow: 0 8px 30px rgba(20, 12, 58, 0.5);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
  }
}

.pricing-items.style-2.active .top-text::before {
  background: linear-gradient(135deg, rgba(249, 189, 6, 0.2) 0%, transparent 100%);
}

.pricing-items.style-2.active .top-text::after {
  display: none;
}

.pricing-items.style-2.active .pricing-btn {
  background: linear-gradient(135deg, #f9bd06 0%, #e6a800 100%);
  border: 2px solid #f9bd06;
  color: #140c3a;
  font-weight: 700;
}

.pricing-items.style-2.active .pricing-btn:hover {
  background: linear-gradient(135deg, #140c3a 0%, #1f1254 100%);
  color: #ffffff;
  border-color: #140c3a;
}

/* Animation */
@keyframes rounded {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Sağa-sola hareket animasyonu */
@keyframes arrowMove {
  0% {
    transform: rotate(45deg) translateX(-10px);
  }
  50% {
    transform: rotate(45deg) translateX(10px);
  }
  100% {
    transform: rotate(45deg) translateX(-10px);
  }
}

/* Section Title */
.section-title {
  margin-bottom: 40px;
}

.section-title span {
  font-size: 16px;
  font-weight: 600;
  color: #f9bd06 !important; /* MeoHost sarı */
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 45px;
  font-weight: 700;
  color: #140c3a !important; /* MeoHost koyu mor/mavi */
  line-height: 1.25;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
  }
}

/* Additional Responsive Styles */
@media (max-width: 1199px) {
  .pricing-items.style-2 {
    padding: 25px;
  }
}

@media (max-width: 991px) {
  .pricing-tab-header .save-text {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .pricing-items {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .pricing-items.style-2 {
    padding: 20px;
    margin-top: 30px;
  }
  
  .pricing-items .pricing-list li {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .pricing-items.style-2 .pricing-header-2 h2 {
    font-size: 42px;
  }

  .pricing-items.style-2 .pricing-header-2 h2 sub {
    font-size: 16px;
  }

  .pricing-items.style-2 .top-text {
    font-size: 12px;
    padding: 8px 20px;
    min-width: 130px;
    letter-spacing: 0.5px;
  }

  .pricing-items .pricing-list li {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .pricing-items.style-2 .pricing-header-2 h2 {
    font-size: 46px;
  }

  .pricing-items.style-2 .top-text {
    font-size: 13px;
    padding: 9px 24px;
  }
}

/* Row spacing */
.pricing-section .row {
  margin-left: -15px;
  margin-right: -15px;
}

.pricing-section .row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

/* Tab Content */
.tab-content {
  margin-top: 40px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-pane.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.tab-pane.fade.show {
  opacity: 1;
}

/* Smooth Transitions */
.pricing-items,
.pricing-btn,
.nav-link {
  transition: all 0.3s ease-in-out;
}

/* Hover Effects */
.pricing-items.style-2:hover {
  box-shadow: 0 12px 40px rgba(20, 12, 58, 0.15);
  transform: translateY(-8px);
  border-color: #cbd5e1;
}

.pricing-items.style-2.active:hover {
  box-shadow: 0 16px 48px rgba(249, 189, 6, 0.3), 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: scale(1.03) translateY(-4px);
}

/* WOW Animation Support */
.wow.animated {
  visibility: visible !important;
  animation-duration: 1s;
  animation-fill-mode: both;
}

[data-wow-delay] {
  animation-delay: var(--wow-delay);
}

/* Additional Typography */
.pricing-items p {
  font-size: 15px;
  line-height: 1.6;
}

.pricing-items.style-2 .pricing-list li {
  font-size: 15px;
  font-weight: 500;
}

/* Link Styles */
a {
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}

/* Fix for Bootstrap Tab Navigation */
.pricing-tab-header .nav-item {
  margin-bottom: 0;
}

.pricing-tab-header .nav {
  flex-wrap: nowrap;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Override WOW.js hidden visibility for pricing section */
.pricing-section .wow,
.pricing-section [class*="wow"] {
  visibility: visible !important;
}

/* Make sure pricing items are visible */
.pricing-items {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Pricing Section - Logo Renk Uyumu */
.pricing-section .section-title span {
  color: #f9bd06 !important; /* MeoHost sarı */
}

.pricing-section .section-title h2 {
  color: #140c3a !important; /* MeoHost koyu mor/mavi */
}

/* Eşit Yükseklik - Row ve Column İçin */
.pricing-section .row {
  display: flex;
  flex-wrap: wrap;
}

.pricing-section [class*="col-"] {
  display: flex;
  flex-direction: column;
}

/* Mobil Responsive - Min Height Ayarları */
@media (max-width: 1199px) {
  .pricing-items.style-2 {
    min-height: 580px;
  }
}

@media (max-width: 991px) {
  .pricing-items.style-2 {
    min-height: 560px;
  }
}

@media (max-width: 767px) {
  .pricing-items.style-2 {
    min-height: auto;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .pricing-items.style-2 {
    min-height: auto;
  }
}


/* Basit, Temiz Stil - Gereksiz Animasyon Yok */

/* Feature Cards - Section EN ÜSTTE */
.feature-cards-wrapper {
  margin: 0 0 70px 0;
  padding-top: 0;
}

.feature-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card .feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f9bd06 0%, #fcd34d 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 8px 32px rgba(249, 189, 6, 0.35);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.feature-card .feature-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: translateY(-10px) scale(1.08);
  box-shadow: 0 16px 48px rgba(249, 189, 6, 0.5);
  background: linear-gradient(135deg, #fcd34d 0%, #f9bd06 100%);
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
}

.feature-card .feature-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(8%) sepia(58%) saturate(3842%) hue-rotate(245deg) brightness(92%) contrast(102%);
  opacity: 1;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon img {
  transform: scale(1.12) rotate(-3deg);
  opacity: 1;
}

/* Glassmorphism Çizgi */
.feature-card::before {
  content: '';
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 45px;
  background: linear-gradient(to bottom,
    rgba(249, 189, 6, 0.4) 0%,
    rgba(249, 189, 6, 0.2) 50%,
    rgba(249, 189, 6, 0) 100%
  );
  z-index: 1;
  transition: all 0.3s ease;
}

.feature-card:hover::before {
  height: 50px;
  background: linear-gradient(to bottom,
    rgba(249, 189, 6, 0.6) 0%,
    rgba(249, 189, 6, 0.3) 50%,
    rgba(249, 189, 6, 0) 100%
  );
}

/* Card Body - Glassmorphism */
.feature-card-body {
  background: rgba(20, 12, 58, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(249, 189, 6, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  margin-top: 45px;
  box-shadow: 0 8px 32px rgba(20, 12, 58, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-card-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(249, 189, 6, 0.1) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
}

.feature-card:hover .feature-card-body::before {
  left: 100%;
}

.feature-card:hover .feature-card-body {
  box-shadow: 0 12px 48px rgba(20, 12, 58, 0.5), 0 0 0 1px rgba(249, 189, 6, 0.3);
  border-color: rgba(249, 189, 6, 0.3);
  transform: translateY(-5px);
}

.feature-card h5 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 991px) {
  .feature-cards-wrapper {
    margin: 0 0 60px 0;
  }

  .feature-card .feature-icon {
    width: 80px;
    height: 80px;
  }

  .feature-card .feature-icon img {
    width: 48px;
    height: 48px;
  }

  .feature-card-body {
    min-height: 140px;
    padding: 30px 20px;
    margin-top: 40px;
  }

  .feature-card h5 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .feature-cards-wrapper {
    margin: 0 0 50px 0;
  }

  .feature-card {
    margin-bottom: 35px;
  }

  .feature-card .feature-icon {
    width: 75px;
    height: 75px;
  }

  .feature-card .feature-icon img {
    width: 45px;
    height: 45px;
  }

  .feature-card::before {
    height: 40px;
  }

  .feature-card-body {
    min-height: 130px;
    padding: 28px 18px;
    margin-top: 40px;
  }

  .feature-card h5 {
    font-size: 17px;
  }

  .feature-card p {
    font-size: 13px;
  }
}

/* Hosting Box Items - Webmeo Style */
.hosting-box-items {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background-color: #ffffff;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}

.hosting-box-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #140c3a;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index: -1;
  border-radius: 16px;
}

.hosting-box-items .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hosting-box-items .icon img {
  max-width: 50px;
  height: auto;
}

.hosting-box-items .content {
  margin-top: 20px;
}

.hosting-box-items .content h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}

.hosting-box-items .content h3 a {
  color: #140c3a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hosting-box-items .content p {
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hosting-box-items .content .theme-btn {
  padding: 15px 40px;
  background-color: transparent;
  color: #4a5568;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  border-radius: 36px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.hosting-box-items .content .theme-btn i {
  margin-left: 8px;
}

.hosting-box-items .content .theme-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #140c3a;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
  border-radius: 36px;
}

/* Button hover effect removed as per user request */
/*.hosting-box-items .content .theme-btn:hover::before {
  transform: scale(1);
}

.hosting-box-items .content .theme-btn:hover {
  color: #ffffff;
  border: 1px solid #f9bd06;
}*/

.hosting-box-items:hover {
  border: 1px solid #140c3a;
}

.hosting-box-items:hover::before {
  transform: scale(1, 1);
  transform-origin: top center;
}

.hosting-box-items:hover .icon {
  border: 1px solid transparent;
  background-color: #F3F7FB;
  transform: scaleX(-1);
}

.hosting-box-items:hover .content h3 a {
  color: #ffffff;
}

.hosting-box-items:hover .content p {
  color: #ffffff;
}

/* Card hover effect on button removed as per user request */
/*.hosting-box-items:hover .content .theme-btn {
  background-color: #ffffff;
  color: #140c3a;
  border: 1px solid #ffffff;
}*/

@media (max-width: 991px) {
  .hosting-box-items {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .hosting-box-items {
    padding: 20px;
    margin-top: 20px;
  }

  .hosting-box-items .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }

  .hosting-box-items .icon img {
    max-width: 40px;
  }

  .hosting-box-items .content h3 {
    font-size: 20px;
  }
}

/* Section Title Style Border */
.section-title span.style-border {
  position: relative;
  color: #140c3a;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title span.style-border::before {
  position: absolute;
  top: 13px;
  right: -35px;
  content: "";
  width: 20px;
  height: 1.6px;
  background-color: #140c3a;
}

.section-title span.style-border::after {
  position: absolute;
  top: 13px;
  left: -35px;
  content: "";
  width: 20px;
  height: 1.6px;
  background-color: #140c3a;
}

@media (max-width: 575px) {
  .hosting-box-items .content h3 {
    font-size: 18px;
  }

  .hosting-box-items .content p {
    font-size: 14px;
  }

  .hosting-box-items .content .theme-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}

/* Hosting Box Items - Better Transitions */
.hosting-box-items .content .theme-btn {
  z-index: 1;
}

.hosting-box-items:hover .content .theme-btn:hover {
  background-color: #ffffff;
  color: #140c3a;
  border: 1px solid #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Section Title Styling */
.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 45px;
  font-weight: 700;
  color: #140c3a;
  line-height: 1.25;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 36px;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
  }
}

/* Hosting Services Section */
.hosting-services-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

@media (max-width: 991px) {
  .hosting-services-section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .hosting-services-section {
    padding: 50px 0;
  }
}


.feature-wrapper-2 .feature-card-items .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #140c3a;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-wrapper-2 .feature-card-items .icon img {
  max-width: 40px;
  height: auto;
}

.feature-wrapper-2 .feature-card-items:hover .icon {
  background-color: #140c3a;
  border-color: #140c3a;
  transform: translateY(-5px);
}

.feature-wrapper-2 .feature-card-items {
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-wrapper-2 .feature-card-items:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-wrapper-2 .feature-card-items .content h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #140c3a;
  transition: all 0.3s ease;
}

.feature-wrapper-2 .feature-card-items .content p {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.feature-wrapper-2 .feature-card-items .content {
  text-align: center;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .feature-wrapper-2 .feature-card-items .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .feature-wrapper-2 .feature-card-items .content h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .feature-wrapper-2 .feature-card-items {
    padding: 25px 15px;
  }
}

/* Feature Wrapper 2 - COMPLETE WEBMEO STYLE */
.feature-wrapper-2 {
  background-color: #f8f9fa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 60px 100px;
  position: relative;
  z-index: 9;
  margin-top: -130px;
  border-radius: 16px;
  width: 100%;
  max-width: 100%;
}

.feature-wrapper-2::before {
  position: absolute;
  top: 30%;
  left: 40px;
  right: 0;
  content: "";
  width: 94%;
  transform: translateY(-50%);
  z-index: -1;
  border: 1px dotted #e5e7eb;
}

@media (max-width: 1199px) {
  .feature-wrapper-2::before {
    display: none;
  }
  
  .feature-wrapper-2 {
    margin-top: 0;
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .feature-wrapper-2 {
    padding: 30px 20px;
  }
}

/* Duplicate styles removed - using main definitions above */

@media (max-width: 991px) {
  .feature-wrapper-2 .feature-card-items .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .feature-wrapper-2 .feature-card-items .icon img {
    max-width: 35px;
  }
  
  .feature-wrapper-2 .feature-card-items .content h3 {
    font-size: 18px;
  }
  
  .feature-wrapper-2 .feature-card-items .content p {
    font-size: 14px;
  }
}
