@tailwind base;
@tailwind components;
@tailwind utilities;
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #142941;
  color: #fff;
}
body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
body::-webkit-scrollbar-thumb {
  background: #EE6F3F;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "KoHo", sans-serif;
  margin: 0;
}

p {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.main-container {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Light.ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraBold.ttf");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "KoHo";
  src: url("../fonts/KoHo/KoHo-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "KoHo";
  src: url("../fonts/KoHo/KoHo-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "KoHo";
  src: url("../fonts/KoHo/KoHo-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "KoHo";
  src: url("../fonts/KoHo/KoHo-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "KoHo";
  src: url("../fonts/KoHo/KoHo-ExtraBold.ttf");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "KoHo";
  src: url("../fonts/KoHo/KoHo-Black.ttf");
  font-weight: 900;
  font-style: normal;
}
.btn-primary {
  background: #EE6F3F;
  border: 1px solid #EE6F3F;
  color: #fff;
  padding: 6px 20px;
  height: 36px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Poppins";
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-primary:hover {
  background: transparent;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 6px 20px;
  height: 36px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Poppins";
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-secondary:hover {
  border: 1px solid #EE6F3F;
  background: #EE6F3F;
  color: #fff;
}

.hero-section {
  position: relative;
  padding-top: 100px;
  text-align: center;
}
.hero-section .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.hero-section .hero-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 10px;
}
.hero-section .hero-title {
  font-size: 64px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-section .hero-description {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 20px;
}
.hero-section .hero-cta {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-section .hero-cta a {
  border: 1px solid #EE6F3F;
  background: #EE6F3F;
  color: #fff;
  padding: 6px 20px;
  height: 36px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Poppins";
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  display: flex;
  align-items: center;
}
.hero-section .hero-cta a:hover {
  background: transparent;
  color: #fff;
}

.ellipse-1 {
  position: absolute;
  top: 0;
  right: 0;
  height: 491px;
}

.ellipse-2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 491px;
}

.frame-1 {
  width: 100%;
  height: 380px;
  object-fit: cover;
  margin-top: -130px;
}

.sb-section {
  padding: 100px 0;
  position: relative;
}

.about-section .about-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-section .about-content .section-tagline {
  text-align: left;
}
.about-section .about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.about-section .about-content .section-description {
  text-align: left;
  margin: 0 0 20px 0;
}
.about-section .about-content p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
  margin-bottom: 30px;
}
.about-section .about-content .about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.about-section .about-content .about-features .about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-section .about-content .about-features .about-feature-item i {
  font-size: 20px;
  color: #FF8456;
}
.about-section .about-content .about-features .about-feature-item span {
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins";
  color: #E1EFFF;
}
.about-section .about-image .about-image-placeholder {
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.2) 0%, rgba(255, 132, 86, 0.2) 100%);
  border: 2px dashed rgba(238, 111, 63, 0.3);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
}
.about-section .about-image .about-image-placeholder i {
  font-size: 80px;
  color: #FF8456;
  margin-bottom: 20px;
}

.our-services-section .our-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.our-services-section .our-service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.4s ease;
}
.our-services-section .our-service-card:hover {
  transform: translateY(-8px);
  border-color: #EE6F3F;
  box-shadow: 0 20px 40px rgba(238, 111, 63, 0.2);
}
.our-services-section .our-service-card .our-service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.our-services-section .our-service-card:hover .our-service-icon {
  transform: scale(1.1) rotate(-5deg);
}
.our-services-section .our-service-card h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 15px;
}
.our-services-section .our-service-card p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.6;
  margin-bottom: 20px;
}
.our-services-section .our-service-card .service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.our-services-section .our-service-card .service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
}
.our-services-section .our-service-card .service-features li i {
  color: #FF8456;
  font-size: 12px;
}

.pricing-section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.pricing-section .pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 35px;
  position: relative;
  transition: all 0.4s ease;
}
.pricing-section .pricing-card.featured {
  border-color: #EE6F3F;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.1) 0%, rgba(255, 132, 86, 0.1) 100%);
  transform: scale(1.05);
}
.pricing-section .pricing-card.featured .pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Poppins";
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-section .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(238, 111, 63, 0.2);
}
.pricing-section .pricing-card:hover.featured {
  transform: scale(1.05) translateY(-10px);
}
.pricing-section .pricing-card .pricing-header {
  text-align: center;
  margin-bottom: 30px;
}
.pricing-section .pricing-card .pricing-header h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
}
.pricing-section .pricing-card .pricing-header .pricing-price {
  margin-bottom: 15px;
}
.pricing-section .pricing-card .pricing-header .pricing-price .price-amount {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #FF8456;
}
.pricing-section .pricing-card .pricing-header .pricing-price .price-period {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-left: 5px;
}
.pricing-section .pricing-card .pricing-header .pricing-description {
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
}
.pricing-section .pricing-card .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.pricing-section .pricing-card .pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
}
.pricing-section .pricing-card .pricing-features li i {
  color: #FF8456;
  font-size: 14px;
}
.pricing-section .pricing-card .pricing-btn {
  width: 100%;
  margin-top: auto;
}

.resources-section .resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.resources-section .resource-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.resources-section .resource-card:hover {
  transform: translateY(-8px);
  border-color: #EE6F3F;
  box-shadow: 0 20px 40px rgba(238, 111, 63, 0.15);
}
.resources-section .resource-card:hover .resource-link {
  color: #FF8456;
}
.resources-section .resource-card:hover .resource-link i {
  transform: translateX(5px);
}
.resources-section .resource-card .resource-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.2) 0%, rgba(255, 132, 86, 0.2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #FF8456;
  margin-bottom: 20px;
}
.resources-section .resource-card h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 15px;
}
.resources-section .resource-card p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.resources-section .resource-card .resource-link {
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins";
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.resources-section .resource-card .resource-link i {
  transition: transform 0.3s ease;
}

.contact-section {
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.05) 0%, rgba(255, 132, 86, 0.05) 100%);
}
.contact-section .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-section .contact-info .section-tagline {
  text-align: left;
}
.contact-section .contact-info .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.contact-section .contact-info .section-description {
  text-align: left;
  margin: 0 0 40px 0;
}
.contact-section .contact-info .contact-details {
  margin-bottom: 40px;
}
.contact-section .contact-info .contact-details .contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-section .contact-info .contact-details .contact-item .contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}
.contact-section .contact-info .contact-details .contact-item .contact-content h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 8px;
}
.contact-section .contact-info .contact-details .contact-item .contact-content p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 4px;
}
.contact-section .contact-info .contact-social {
  display: flex;
  gap: 15px;
}
.contact-section .contact-info .contact-social .social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-section .contact-info .contact-social .social-link:hover {
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-color: #EE6F3F;
  transform: translateY(-3px);
}
.contact-section .contact-form-wrapper .contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}
.contact-section .contact-form-wrapper .contact-form .form-group {
  margin-bottom: 20px;
}
.contact-section .contact-form-wrapper .contact-form .form-group input, .contact-section .contact-form-wrapper .contact-form .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #fff;
  transition: all 0.3s ease;
}
.contact-section .contact-form-wrapper .contact-form .form-group input::placeholder, .contact-section .contact-form-wrapper .contact-form .form-group textarea::placeholder {
  color: rgba(225, 239, 255, 0.5);
}
.contact-section .contact-form-wrapper .contact-form .form-group input:focus, .contact-section .contact-form-wrapper .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #EE6F3F;
  background: rgba(255, 255, 255, 0.08);
}
.contact-section .contact-form-wrapper .contact-form .form-group textarea {
  resize: vertical;
}
.contact-section .contact-form-wrapper .contact-form button {
  width: 100%;
}

.consultation-section .consultation-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.consultation-section .consultation-content .section-tagline {
  text-align: left;
}
.consultation-section .consultation-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.consultation-section .consultation-content .section-description {
  text-align: left;
  margin: 0 0 30px 0;
}
.consultation-section .consultation-content .consultation-benefits {
  margin-bottom: 40px;
}
.consultation-section .consultation-content .consultation-benefits .consultation-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.consultation-section .consultation-content .consultation-benefits .consultation-benefit i {
  font-size: 20px;
  color: #FF8456;
}
.consultation-section .consultation-content .consultation-benefits .consultation-benefit span {
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins";
  color: #E1EFFF;
}
.consultation-section .consultation-content .consultation-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.consultation-section .consultation-content .consultation-form .form-group {
  margin-bottom: 20px;
}
.consultation-section .consultation-content .consultation-form .form-group input, .consultation-section .consultation-content .consultation-form .form-group select, .consultation-section .consultation-content .consultation-form .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #fff;
  transition: all 0.3s ease;
}
.consultation-section .consultation-content .consultation-form .form-group input::placeholder, .consultation-section .consultation-content .consultation-form .form-group select::placeholder, .consultation-section .consultation-content .consultation-form .form-group textarea::placeholder {
  color: rgba(225, 239, 255, 0.5);
}
.consultation-section .consultation-content .consultation-form .form-group input:focus, .consultation-section .consultation-content .consultation-form .form-group select:focus, .consultation-section .consultation-content .consultation-form .form-group textarea:focus {
  outline: none;
  border-color: #EE6F3F;
  background: rgba(255, 255, 255, 0.08);
}
.consultation-section .consultation-content .consultation-form .form-group select {
  cursor: pointer;
}
.consultation-section .consultation-content .consultation-form .form-group select option {
  background: #142941;
  color: #fff;
}
.consultation-section .consultation-content .consultation-form .form-group textarea {
  resize: vertical;
}
.consultation-section .consultation-content .consultation-form button {
  width: 100%;
}
.consultation-section .consultation-image .consultation-image-placeholder {
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.15) 0%, rgba(255, 132, 86, 0.15) 100%);
  border: 2px dashed rgba(238, 111, 63, 0.3);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
}
.consultation-section .consultation-image .consultation-image-placeholder i {
  font-size: 80px;
  color: #FF8456;
  margin-bottom: 20px;
}
.consultation-section .consultation-image .consultation-image-placeholder p {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #E1EFFF;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  max-width: 700px;
  margin: 0 auto;
}

.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.services-section .service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.services-section .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}
.services-section .service-card:hover {
  transform: translateY(-10px);
  border-color: #EE6F3F;
  box-shadow: 0 20px 40px rgba(238, 111, 63, 0.2);
}
.services-section .service-card:hover::before {
  left: 100%;
}
.services-section .service-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  transition: all 0.3s ease;
}
.services-section .service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}
.services-section .service-card h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 15px;
}
.services-section .service-card p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.6;
}

.why-choose-us-section {
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.05) 0%, rgba(255, 132, 86, 0.05) 100%);
}
.why-choose-us-section .why-choose-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-choose-us-section .why-choose-content .features-list {
  margin-top: 40px;
}
.why-choose-us-section .why-choose-content .feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.why-choose-us-section .why-choose-content .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}
.why-choose-us-section .why-choose-content .feature-item .feature-content h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 8px;
}
.why-choose-us-section .why-choose-content .feature-item .feature-content p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.6;
}
.why-choose-us-section .why-choose-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.why-choose-us-section .why-choose-stats .stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-choose-us-section .why-choose-stats .stat-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(238, 111, 63, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-choose-us-section .why-choose-stats .stat-card:hover {
  transform: translateY(-5px);
  border-color: #EE6F3F;
}
.why-choose-us-section .why-choose-stats .stat-card:hover::after {
  opacity: 1;
}
.why-choose-us-section .why-choose-stats .stat-card .stat-number {
  font-size: 42px;
  font-weight: 700;
  font-family: "KoHo";
  color: #FF8456;
  margin-bottom: 10px;
  line-height: 1;
}
.why-choose-us-section .why-choose-stats .stat-card .stat-label {
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.success-story-section .success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.success-story-section .success-story-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.success-story-section .success-story-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(238, 111, 63, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}
.success-story-section .success-story-card:hover {
  transform: translateY(-8px);
  border-color: #EE6F3F;
  box-shadow: 0 25px 50px rgba(238, 111, 63, 0.15);
}
.success-story-section .success-story-card .story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.success-story-section .success-story-card .story-header .story-company {
  font-size: 20px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
}
.success-story-section .success-story-card .story-header .story-industry {
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #FF8456;
  background: rgba(255, 132, 86, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
}
.success-story-section .success-story-card .story-content {
  margin-bottom: 25px;
}
.success-story-section .success-story-card .story-content p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
  font-style: italic;
}
.success-story-section .success-story-card .story-metrics {
  display: flex;
  gap: 20px;
}
.success-story-section .success-story-card .story-metrics .metric {
  flex: 1;
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}
.success-story-section .success-story-card .story-metrics .metric .metric-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  font-family: "KoHo";
  color: #FF8456;
  margin-bottom: 5px;
}
.success-story-section .success-story-card .story-metrics .metric .metric-label {
  display: block;
  font-size: 12px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-section .blog-loading, .blog-section .blog-empty {
  text-align: center;
  padding: 60px 20px;
  margin-top: 50px;
}
.blog-section .blog-loading p, .blog-section .blog-empty p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.blog-section .blog-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.blog-section .blog-card:hover {
  transform: translateY(-8px);
  border-color: #EE6F3F;
  box-shadow: 0 25px 50px rgba(238, 111, 63, 0.15);
}
.blog-section .blog-card:hover .blog-image {
  transform: scale(1.05);
}
.blog-section .blog-card:hover .blog-link {
  color: #FF8456;
}
.blog-section .blog-card:hover .blog-link i {
  transform: translateX(5px);
}
.blog-section .blog-card .blog-image {
  height: 220px;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.blog-section .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-section .blog-card .blog-image .blog-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
}
.blog-section .blog-card .blog-image .blog-date .date-day {
  display: block;
  font-size: 28px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  line-height: 1;
}
.blog-section .blog-card .blog-image .blog-date .date-month {
  display: block;
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #fff;
  text-transform: uppercase;
  margin-top: 4px;
}
.blog-section .blog-card .blog-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-section .blog-card .blog-content .blog-category {
  font-size: 12px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.blog-section .blog-card .blog-content h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}
.blog-section .blog-card .blog-content p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.blog-section .blog-card .blog-content .blog-link {
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins";
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.blog-section .blog-card .blog-content .blog-link i {
  transition: transform 0.3s ease;
}

.cta-section {
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.1) 0%, rgba(255, 132, 86, 0.1) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section .cta-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-section .cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-section .cta-content p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-section .cta-content .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.cta-section .cta-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.cta-section .cta-decoration .cta-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 111, 63, 0.15) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}
.cta-section .cta-decoration .cta-circle.cta-circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}
.cta-section .cta-decoration .cta-circle.cta-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
  animation-delay: 2s;
}
.cta-section .cta-decoration .cta-circle.cta-circle-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  right: -125px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}
.faq-section .faq-wrapper {
  max-width: 900px;
  margin: 50px auto 0;
}
.faq-section .faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .faq-item:hover {
  border-color: rgba(238, 111, 63, 0.5);
}
.faq-section .faq-item .faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-section .faq-item .faq-question h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin: 0;
  flex: 1;
}
.faq-section .faq-item .faq-question i {
  font-size: 18px;
  color: #FF8456;
  transition: transform 0.3s ease;
}
.faq-section .faq-item .faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}
.faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-section .faq-item .faq-answer p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
  padding: 0 30px 25px;
}
.faq-section .faq-item.active {
  border-color: #EE6F3F;
}
.faq-section .faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-section .faq-item.active .faq-answer {
  max-height: 500px;
}

.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.05) 0%, rgba(255, 132, 86, 0.05) 100%);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(238, 111, 63, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.testimonial-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 132, 86, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.testimonial-section .testimonial-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
}
.testimonial-section .testimonial-wrapper h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.testimonial-section .testimonial-wrapper h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #EE6F3F 0%, #FF8456 100%);
  border-radius: 2px;
}
.testimonial-section .testimonial-wrapper .testimonial-loading {
  padding: 60px 20px;
}
.testimonial-section .testimonial-wrapper .testimonial-loading p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
}
.testimonial-section .testimonial-wrapper .testimonial-swiper {
  padding: 60px 60px 80px;
  position: relative;
}
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-next),
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-prev) {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #FF8456;
  transition: all 0.3s ease;
  margin-top: -25px;
}
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-next)::after,
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-prev)::after {
  font-size: 20px;
  font-weight: 700;
}
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-next):hover,
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-prev):hover {
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-color: #FF8456;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(238, 111, 63, 0.3);
}
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-next).swiper-button-disabled,
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-prev).swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-next).swiper-button-disabled:hover,
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-prev).swiper-button-disabled:hover {
  transform: scale(1);
}
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-prev) {
  left: 0;
}
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-next) {
  right: 0;
}
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-pagination) {
  bottom: 20px;
}
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-pagination-bullet) {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-pagination-bullet):hover {
  background: rgba(255, 132, 86, 0.6);
  transform: scale(1.2);
}
.testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-pagination-bullet).swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-color: rgba(255, 255, 255, 0.3);
  width: 32px;
  border-radius: 6px;
  transform: scale(1);
}
.testimonial-section .testimonial-wrapper .testimonial-item {
  height: 100%;
  padding: 10px;
}
.testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 45px 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #EE6F3F 0%, #FF8456 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content:hover {
  border-color: rgba(238, 111, 63, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(238, 111, 63, 0.2);
}
.testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content:hover::before {
  transform: scaleX(1);
}
.testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content .quote {
  margin: 0 auto 25px;
  width: 60px;
  height: auto;
  opacity: 0.8;
  filter: drop-shadow(0 4px 8px rgba(238, 111, 63, 0.3));
  transition: all 0.3s ease;
}
.testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content:hover .quote {
  opacity: 1;
  transform: scale(1.1);
}
.testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content p {
  font-size: 17px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.8;
  margin-bottom: 30px;
  flex: 1;
  font-style: italic;
  position: relative;
}
.testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content p::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -15px;
  font-size: 60px;
  font-family: "KoHo";
  color: rgba(255, 132, 86, 0.2);
  line-height: 1;
}
.testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content .testimonial-author {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content .testimonial-author h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 8px;
}
.testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content .testimonial-author .testimonial-role {
  display: block;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 5px;
}
.testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content .testimonial-author .testimonial-company {
  display: block;
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: rgba(225, 239, 255, 0.7);
}

@media (max-width: 1200px) {
  .hero-section {
    padding-top: 80px;
  }
  .hero-section .hero-content {
    max-width: 650px;
  }
  .hero-section .hero-title {
    font-size: 56px;
  }
  .hero-section .frame-1 {
    height: 320px;
    margin-top: -110px;
  }
  .section-title {
    font-size: 42px;
  }
  .why-choose-us-section .why-choose-wrapper {
    gap: 50px;
  }
}
@media (max-width: 1024px) {
  .hero-section {
    padding-top: 80px;
  }
  .hero-section .hero-content {
    max-width: 600px;
  }
  .hero-section .hero-title {
    font-size: 50px;
  }
  .hero-section .hero-description {
    font-size: 15px;
  }
  .hero-section .ellipse-1,
  .hero-section .ellipse-2 {
    height: 400px;
    opacity: 0.7;
  }
  .hero-section .frame-1 {
    height: 300px;
    margin-top: -100px;
  }
  .sb-section {
    padding: 80px 0;
  }
  .section-title {
    font-size: 40px;
  }
  .section-description {
    font-size: 17px;
  }
  .our-services-section .our-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .why-choose-us-section .why-choose-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .why-choose-us-section .why-choose-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .success-story-section .success-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-section .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-section .testimonial-wrapper {
    padding: 50px 35px;
  }
  .testimonial-section .testimonial-wrapper h2 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
  }
  .hero-section .hero-content {
    max-width: 100%;
    padding: 0 10px;
  }
  .hero-section .hero-tagline {
    font-size: 18px;
  }
  .hero-section .hero-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .hero-section .hero-description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .hero-section .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  .hero-section .hero-cta button {
    width: 100%;
    max-width: 280px;
  }
  .hero-section .ellipse-1,
  .hero-section .ellipse-2 {
    height: 300px;
    opacity: 0.5;
  }
  .hero-section .frame-1 {
    height: 250px;
    margin-top: -80px;
  }
  .sb-section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-header .section-tagline {
    font-size: 18px;
  }
  .section-header .section-title {
    font-size: 32px;
  }
  .section-header .section-description {
    font-size: 16px;
  }
  .about-section .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-section .about-content .about-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .our-services-section .our-services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }
  .our-services-section .our-service-card {
    padding: 30px 25px;
  }
  .our-services-section .our-service-card .our-service-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .our-services-section .our-service-card h3 {
    font-size: 22px;
  }
  .our-services-section .our-service-card p {
    font-size: 15px;
  }
  .pricing-section .pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .pricing-section .pricing-card {
    padding: 35px 25px;
  }
  .pricing-section .pricing-card.featured {
    transform: scale(1);
  }
  .pricing-section .pricing-card:hover.featured {
    transform: translateY(-10px);
  }
  .pricing-section .pricing-card .pricing-header h3 {
    font-size: 24px;
  }
  .pricing-section .pricing-card .pricing-header .pricing-price .price-amount {
    font-size: 40px;
  }
  .resources-section .resources-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .resources-section .resource-card {
    padding: 30px 25px;
  }
  .contact-section .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-section .contact-info .contact-details .contact-item {
    gap: 15px;
    margin-bottom: 25px;
  }
  .contact-section .contact-info .contact-details .contact-item .contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 18px;
  }
  .contact-section .contact-form-wrapper .contact-form {
    padding: 30px 25px;
  }
  .consultation-section .consultation-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .consultation-section .consultation-content .consultation-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .services-section .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .why-choose-us-section .why-choose-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-choose-us-section .why-choose-content .features-list {
    margin-top: 30px;
  }
  .why-choose-us-section .why-choose-content .feature-item {
    gap: 15px;
    margin-bottom: 25px;
  }
  .why-choose-us-section .why-choose-content .feature-item .feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 18px;
  }
  .why-choose-us-section .why-choose-content .feature-item .feature-content h3 {
    font-size: 20px;
  }
  .why-choose-us-section .why-choose-content .feature-item .feature-content p {
    font-size: 15px;
  }
  .why-choose-us-section .why-choose-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .why-choose-us-section .why-choose-stats .stat-card {
    padding: 30px 20px;
  }
  .why-choose-us-section .why-choose-stats .stat-card .stat-number {
    font-size: 36px;
  }
  .why-choose-us-section .why-choose-stats .stat-card .stat-label {
    font-size: 13px;
  }
  .success-story-section .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .success-story-section .success-story-card {
    padding: 30px 25px;
  }
  .success-story-section .success-story-card .story-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .success-story-section .success-story-card .story-header .story-company {
    font-size: 18px;
  }
  .success-story-section .success-story-card .story-content p {
    font-size: 15px;
  }
  .success-story-section .success-story-card .story-metrics {
    gap: 15px;
  }
  .success-story-section .success-story-card .story-metrics .metric {
    padding: 12px;
  }
  .success-story-section .success-story-card .story-metrics .metric .metric-value {
    font-size: 24px;
  }
  .success-story-section .success-story-card .story-metrics .metric .metric-label {
    font-size: 11px;
  }
  .blog-section .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .blog-section .blog-card .blog-image {
    height: 200px;
  }
  .blog-section .blog-card .blog-content {
    padding: 25px;
  }
  .blog-section .blog-card .blog-content h3 {
    font-size: 22px;
  }
  .blog-section .blog-card .blog-content p {
    font-size: 15px;
  }
  .cta-section .cta-content h2 {
    font-size: 32px;
  }
  .cta-section .cta-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .cta-section .cta-content .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .cta-section .cta-content .cta-buttons button {
    width: 100%;
    max-width: 300px;
  }
  .cta-section .cta-decoration .cta-circle.cta-circle-1 {
    width: 200px;
    height: 200px;
  }
  .cta-section .cta-decoration .cta-circle.cta-circle-2 {
    width: 150px;
    height: 150px;
  }
  .cta-section .cta-decoration .cta-circle.cta-circle-3 {
    width: 180px;
    height: 180px;
  }
  .faq-section .faq-wrapper {
    margin-top: 40px;
  }
  .faq-section .faq-item {
    margin-bottom: 15px;
  }
  .faq-section .faq-item .faq-question {
    padding: 20px;
  }
  .faq-section .faq-item .faq-question h3 {
    font-size: 18px;
  }
  .faq-section .faq-item .faq-question i {
    font-size: 16px;
  }
  .faq-section .faq-item .faq-answer p {
    padding: 0 20px 20px;
    font-size: 15px;
  }
  .testimonial-section {
    padding: 60px 0;
  }
  .testimonial-section .testimonial-wrapper {
    padding: 40px 30px;
  }
  .testimonial-section .testimonial-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-content p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .testimonial-section {
    padding: 40px 0;
  }
  .testimonial-section .testimonial-wrapper h2 {
    font-size: 28px;
  }
  .testimonial-section .testimonial-wrapper h2::after {
    width: 50px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-swiper {
    padding: 30px 0 50px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-next),
  .testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-prev) {
    width: 35px;
    height: 35px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-next)::after,
  .testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-prev)::after {
    font-size: 14px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-pagination-bullet) {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-pagination-bullet).swiper-pagination-bullet-active {
    width: 24px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content {
    padding: 30px 20px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content .quote {
    width: 40px;
    margin-bottom: 15px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content p::before {
    font-size: 40px;
    top: -5px;
    left: -10px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content .testimonial-author h3 {
    font-size: 18px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content .testimonial-author .testimonial-role {
    font-size: 13px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content .testimonial-author .testimonial-company {
    font-size: 12px;
  }
  .hero-section {
    padding-top: 100px;
  }
  .hero-section .hero-content {
    padding: 0;
  }
  .hero-section .hero-tagline {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .hero-section .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }
  .hero-section .hero-description {
    font-size: 14px;
  }
  .hero-section .hero-cta button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .hero-section .ellipse-1,
  .hero-section .ellipse-2 {
    height: 250px;
    opacity: 0.4;
  }
  .hero-section .frame-1 {
    height: 200px;
    margin-top: -60px;
  }
  .sb-section {
    padding: 50px 0;
  }
  .section-header {
    margin-bottom: 35px;
  }
  .section-header .section-tagline {
    font-size: 16px;
  }
  .section-header .section-title {
    font-size: 28px;
  }
  .section-header .section-description {
    font-size: 15px;
  }
  .our-services-section .our-services-grid {
    gap: 20px;
  }
  .our-services-section .our-service-card {
    padding: 25px 20px;
  }
  .our-services-section .our-service-card .our-service-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
    margin-bottom: 15px;
  }
  .our-services-section .our-service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .our-services-section .our-service-card p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .our-services-section .our-service-card .service-features li {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .why-choose-us-section .why-choose-content .feature-item {
    gap: 12px;
    margin-bottom: 20px;
  }
  .why-choose-us-section .why-choose-content .feature-item .feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }
  .why-choose-us-section .why-choose-content .feature-item .feature-content h3 {
    font-size: 18px;
  }
  .why-choose-us-section .why-choose-content .feature-item .feature-content p {
    font-size: 14px;
  }
  .why-choose-us-section .why-choose-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .why-choose-us-section .why-choose-stats .stat-card {
    padding: 25px 20px;
  }
  .why-choose-us-section .why-choose-stats .stat-card .stat-number {
    font-size: 32px;
  }
  .why-choose-us-section .why-choose-stats .stat-card .stat-label {
    font-size: 12px;
  }
  .success-story-section .success-stories-grid {
    gap: 20px;
  }
  .success-story-section .success-story-card {
    padding: 25px 20px;
  }
  .success-story-section .success-story-card .story-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .success-story-section .success-story-card .story-header .story-company {
    font-size: 16px;
  }
  .success-story-section .success-story-card .story-header .story-industry {
    font-size: 12px;
    padding: 4px 10px;
  }
  .success-story-section .success-story-card .story-content {
    margin-bottom: 20px;
  }
  .success-story-section .success-story-card .story-content p {
    font-size: 14px;
  }
  .success-story-section .success-story-card .story-metrics {
    flex-direction: column;
    gap: 12px;
  }
  .success-story-section .success-story-card .story-metrics .metric {
    padding: 15px;
  }
  .success-story-section .success-story-card .story-metrics .metric .metric-value {
    font-size: 22px;
  }
  .success-story-section .success-story-card .story-metrics .metric .metric-label {
    font-size: 10px;
  }
  .blog-section .blog-grid {
    gap: 20px;
  }
  .blog-section .blog-card .blog-image {
    height: 180px;
  }
  .blog-section .blog-card .blog-image .blog-date {
    top: 15px;
    right: 15px;
    padding: 10px 12px;
  }
  .blog-section .blog-card .blog-image .blog-date .date-day {
    font-size: 24px;
  }
  .blog-section .blog-card .blog-image .blog-date .date-month {
    font-size: 12px;
  }
  .blog-section .blog-card .blog-content {
    padding: 20px;
  }
  .blog-section .blog-card .blog-content .blog-category {
    font-size: 11px;
  }
  .blog-section .blog-card .blog-content h3 {
    font-size: 20px;
  }
  .blog-section .blog-card .blog-content p {
    font-size: 14px;
  }
  .cta-section .cta-content h2 {
    font-size: 28px;
  }
  .cta-section .cta-content p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .cta-section .cta-content .cta-buttons button {
    max-width: 100%;
  }
  .faq-section .faq-item .faq-question {
    padding: 18px;
  }
  .faq-section .faq-item .faq-question h3 {
    font-size: 16px;
  }
  .faq-section .faq-item .faq-answer p {
    padding: 0 18px 18px;
    font-size: 14px;
  }
  .testimonial-section {
    padding: 60px 0;
  }
  .testimonial-section .testimonial-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .testimonial-section .testimonial-wrapper h2::after {
    width: 60px;
    height: 3px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-swiper {
    padding: 40px 0 60px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-next),
  .testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-prev) {
    width: 40px;
    height: 40px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-next)::after,
  .testimonial-section .testimonial-wrapper .testimonial-swiper :deep(.swiper-button-prev)::after {
    font-size: 16px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item {
    padding: 5px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content {
    padding: 35px 25px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content .quote {
    width: 45px;
    margin-bottom: 20px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content p::before {
    font-size: 50px;
    top: -8px;
    left: -12px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content .testimonial-author {
    padding-top: 15px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content .testimonial-author h3 {
    font-size: 20px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content .testimonial-author .testimonial-role {
    font-size: 14px;
  }
  .testimonial-section .testimonial-wrapper .testimonial-item .testimonial-content .testimonial-author .testimonial-company {
    font-size: 13px;
  }
  .contact-section .contact-form-wrapper .contact-form {
    padding: 25px 20px;
  }
  .contact-section .contact-form-wrapper .contact-form .form-group {
    margin-bottom: 15px;
  }
  .contact-section .contact-form-wrapper .contact-form .form-group input,
  .contact-section .contact-form-wrapper .contact-form .form-group textarea {
    padding: 12px 18px;
    font-size: 15px;
  }
}
.about-hero {
  position: relative;
  padding: 150px 0 100px;
  overflow: hidden;
}
.about-hero .about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.1) 0%, rgba(255, 132, 86, 0.1) 100%);
}
.about-hero .about-hero-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(238, 111, 63, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.about-hero .about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.about-hero .about-hero-content .hero-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-hero .about-hero-content .hero-title {
  font-size: 56px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-hero .about-hero-content .hero-description {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
}

.about-story {
  padding: 100px 0;
}
.about-story .story-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
.about-story .story-content h2 {
  font-size: 42px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 25px;
}
.about-story .story-content p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-story .story-content .story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.about-story .story-content .story-stats .story-stat {
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
.about-story .story-content .story-stats .story-stat .stat-number {
  font-size: 36px;
  font-weight: 700;
  font-family: "KoHo";
  color: #FF8456;
  margin-bottom: 8px;
}
.about-story .story-content .story-stats .story-stat .stat-label {
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-story .story-image .story-image-placeholder {
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.2) 0%, rgba(255, 132, 86, 0.2) 100%);
  border: 2px dashed rgba(238, 111, 63, 0.3);
  border-radius: 24px;
  padding: 100px 40px;
  text-align: center;
}
.about-story .story-image .story-image-placeholder i {
  font-size: 100px;
  color: #FF8456;
}

.about-mission {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.03) 0%, rgba(255, 132, 86, 0.03) 100%);
}
.about-mission .mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.about-mission .mission-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
}
.about-mission .mission-card:hover {
  transform: translateY(-10px);
  border-color: #EE6F3F;
  box-shadow: 0 25px 50px rgba(238, 111, 63, 0.2);
}
.about-mission .mission-card .mission-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
}
.about-mission .mission-card h3 {
  font-size: 26px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
}
.about-mission .mission-card p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
}

.about-team {
  padding: 100px 0;
}
.about-team .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.about-team .section-header .section-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-team .section-header .section-title {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
}
.about-team .section-header .section-description {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
}
.about-team .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.about-team .team-member {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: all 0.4s ease;
}
.about-team .team-member:hover {
  transform: translateY(-8px);
  border-color: #EE6F3F;
  box-shadow: 0 20px 40px rgba(238, 111, 63, 0.15);
}
.about-team .team-member .member-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.2) 0%, rgba(255, 132, 86, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #FF8456;
  border: 3px solid rgba(238, 111, 63, 0.3);
}
.about-team .team-member h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 8px;
}
.about-team .team-member .member-role {
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 12px;
}
.about-team .team-member .member-bio {
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.6;
}

.about-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.1) 0%, rgba(255, 132, 86, 0.1) 100%);
}
.about-cta .cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.about-cta .cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
}
.about-cta .cta-content p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 40px;
  line-height: 1.7;
}
.about-cta .cta-content .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 80px;
  }
  .about-hero .about-hero-content .hero-title {
    font-size: 40px;
  }
  .about-story .story-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-story .story-content .story-stats {
    grid-template-columns: 1fr;
  }
  .about-mission .mission-grid {
    grid-template-columns: 1fr;
  }
  .about-team .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .about-team .team-grid {
    grid-template-columns: 1fr;
  }
}
.services-hero {
  position: relative;
  padding: 150px 0 100px;
  overflow: hidden;
}
.services-hero .services-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.1) 0%, rgba(255, 132, 86, 0.1) 100%);
}
.services-hero .services-hero-bg::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(238, 111, 63, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.services-hero .services-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.services-hero .services-hero-content .hero-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.services-hero .services-hero-content .hero-title {
  font-size: 56px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.services-hero .services-hero-content .hero-description {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
}

.services-main {
  padding: 100px 0;
}
.services-main .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.services-main .service-card-large {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 50px;
  transition: all 0.4s ease;
}
.services-main .service-card-large:hover {
  transform: translateY(-5px);
  border-color: #EE6F3F;
  box-shadow: 0 25px 50px rgba(238, 111, 63, 0.15);
}
.services-main .service-card-large .service-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}
.services-main .service-card-large .service-header .service-icon-large {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #fff;
  flex-shrink: 0;
}
.services-main .service-card-large .service-header h2 {
  font-size: 36px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
}
.services-main .service-card-large .service-description {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
  margin-bottom: 30px;
}
.services-main .service-card-large .service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.services-main .service-card-large .service-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
}
.services-main .service-card-large .service-features-list li i {
  color: #FF8456;
  font-size: 14px;
}
.services-main .service-card-large .service-benefits {
  display: flex;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.services-main .service-card-large .service-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}
.services-main .service-card-large .service-benefits .benefit-item i {
  color: #FF8456;
  font-size: 18px;
}
.services-main .service-card-large .service-benefits .benefit-item span {
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins";
  color: #fff;
}

.services-process {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.03) 0%, rgba(255, 132, 86, 0.03) 100%);
}
.services-process .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-process .section-header .section-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.services-process .section-header .section-title {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
}
.services-process .process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.services-process .process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
}
.services-process .process-step .step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
}
.services-process .process-step h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 10px;
}
.services-process .process-step p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
}
.services-process .process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #EE6F3F 0%, transparent 100%);
  margin: 0 10px;
}

.services-cta {
  padding: 100px 0;
}
.services-cta .cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.services-cta .cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
}
.services-cta .cta-content p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 40px;
}
.services-cta .cta-content .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .services-hero {
    padding: 120px 0 80px;
  }
  .services-hero .services-hero-content .hero-title {
    font-size: 40px;
  }
  .services-main .service-card-large {
    padding: 35px;
  }
  .services-main .service-card-large .service-header {
    flex-direction: column;
    text-align: center;
  }
  .services-main .service-card-large .service-header h2 {
    font-size: 28px;
  }
  .services-main .service-card-large .service-features-list {
    grid-template-columns: 1fr;
  }
  .services-main .service-card-large .service-benefits {
    flex-direction: column;
  }
  .services-process .process-steps {
    flex-direction: column;
  }
  .services-process .process-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #EE6F3F 0%, transparent 100%);
    margin: 10px 0;
  }
}
.pricing-hero {
  position: relative;
  padding: 150px 0 100px;
  overflow: hidden;
}
.pricing-hero .pricing-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.1) 0%, rgba(255, 132, 86, 0.1) 100%);
}
.pricing-hero .pricing-hero-bg::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(238, 111, 63, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.pricing-hero .pricing-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-hero .pricing-hero-content .hero-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-hero .pricing-hero-content .hero-title {
  font-size: 56px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.pricing-hero .pricing-hero-content .hero-description {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
}

.pricing-main {
  padding: 80px 0;
}
.pricing-main .pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
.pricing-main .pricing-toggle .toggle-label {
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins";
  color: #E1EFFF;
}
.pricing-main .pricing-toggle .toggle-label .discount-badge {
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  margin-left: 8px;
}
.pricing-main .pricing-toggle .toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
}
.pricing-main .pricing-toggle .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing-main .pricing-toggle .toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
}
.pricing-main .pricing-toggle .toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(30px);
}
.pricing-main .pricing-toggle .toggle-switch .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  transition: 0.3s;
}
.pricing-main .pricing-toggle .toggle-switch .toggle-slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.pricing-main .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.pricing-main .pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 45px 35px;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.pricing-main .pricing-card.featured {
  border-color: #EE6F3F;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.1) 0%, rgba(255, 132, 86, 0.1) 100%);
  transform: scale(1.05);
}
.pricing-main .pricing-card.featured .pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Poppins";
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-main .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(238, 111, 63, 0.2);
}
.pricing-main .pricing-card:hover.featured {
  transform: scale(1.05) translateY(-10px);
}
.pricing-main .pricing-card .pricing-header {
  text-align: center;
  margin-bottom: 30px;
}
.pricing-main .pricing-card .pricing-header h3 {
  font-size: 32px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 10px;
}
.pricing-main .pricing-card .pricing-header .plan-subtitle {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 25px;
}
.pricing-main .pricing-card .pricing-header .pricing-price {
  margin-bottom: 10px;
}
.pricing-main .pricing-card .pricing-header .pricing-price .price-amount {
  font-size: 52px;
  font-weight: 700;
  font-family: "KoHo";
  color: #FF8456;
}
.pricing-main .pricing-card .pricing-header .pricing-price .price-period {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-left: 5px;
}
.pricing-main .pricing-card .pricing-header .billing-note {
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #FF8456;
}
.pricing-main .pricing-card .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex: 1;
}
.pricing-main .pricing-card .pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
}
.pricing-main .pricing-card .pricing-features li i {
  color: #FF8456;
  font-size: 14px;
}
.pricing-main .pricing-card .pricing-btn {
  width: 100%;
  margin-top: auto;
}

.pricing-comparison {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.03) 0%, rgba(255, 132, 86, 0.03) 100%);
}
.pricing-comparison .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.pricing-comparison .section-header .section-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-comparison .section-header .section-title {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
}
.pricing-comparison .comparison-table {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}
.pricing-comparison .comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-comparison .comparison-row:last-child {
  border-bottom: none;
}
.pricing-comparison .comparison-row.comparison-header {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
}
.pricing-comparison .comparison-row .comparison-cell {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  display: flex;
  align-items: center;
}
.pricing-comparison .comparison-row .comparison-cell.featured {
  color: #FF8456;
  font-weight: 500;
}
.pricing-comparison .comparison-row .comparison-cell i {
  color: #FF8456;
  font-size: 18px;
}

.pricing-faq {
  padding: 100px 0;
}
.pricing-faq .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.pricing-faq .section-header .section-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-faq .section-header .section-title {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
}
.pricing-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.pricing-faq .faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
}
.pricing-faq .faq-item h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 15px;
}
.pricing-faq .faq-item p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
}

.pricing-cta {
  padding: 100px 0;
}
.pricing-cta .cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-cta .cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
}
.pricing-cta .cta-content p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 40px;
}
.pricing-cta .cta-content .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 120px 0 80px;
  }
  .pricing-hero .pricing-hero-content .hero-title {
    font-size: 40px;
  }
  .pricing-main .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-main .pricing-card.featured {
    transform: scale(1);
  }
  .pricing-comparison .comparison-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pricing-comparison .comparison-row.comparison-header {
    display: none;
  }
  .pricing-comparison .comparison-row .comparison-cell:first-child {
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
  }
  .pricing-faq .faq-grid {
    grid-template-columns: 1fr;
  }
}
.resources-hero {
  position: relative;
  padding: 150px 0 100px;
  overflow: hidden;
}
.resources-hero .resources-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.1) 0%, rgba(255, 132, 86, 0.1) 100%);
}
.resources-hero .resources-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.resources-hero .resources-hero-content .hero-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.resources-hero .resources-hero-content .hero-title {
  font-size: 56px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.resources-hero .resources-hero-content .hero-description {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
}

.resources-main {
  padding: 100px 0;
}
.resources-main .resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.resources-main .resource-card-large {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 45px;
  transition: all 0.4s ease;
}
.resources-main .resource-card-large:hover {
  transform: translateY(-8px);
  border-color: #EE6F3F;
  box-shadow: 0 25px 50px rgba(238, 111, 63, 0.15);
}
.resources-main .resource-card-large:hover .resource-link-btn {
  color: #FF8456;
}
.resources-main .resource-card-large:hover .resource-link-btn i {
  transform: translateX(5px);
}
.resources-main .resource-card-large .resource-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #fff;
  margin-bottom: 25px;
}
.resources-main .resource-card-large h2 {
  font-size: 32px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
}
.resources-main .resource-card-large p {
  font-size: 17px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
  margin-bottom: 25px;
}
.resources-main .resource-card-large .resource-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.resources-main .resource-card-large .resource-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
}
.resources-main .resource-card-large .resource-features li i {
  color: #FF8456;
  font-size: 13px;
}
.resources-main .resource-card-large .resource-link-btn {
  font-size: 17px;
  font-weight: 500;
  font-family: "Poppins";
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.resources-main .resource-card-large .resource-link-btn i {
  transition: transform 0.3s ease;
}

.resources-downloads {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.03) 0%, rgba(255, 132, 86, 0.03) 100%);
}
.resources-downloads .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.resources-downloads .section-header .section-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.resources-downloads .section-header .section-title {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
}
.resources-downloads .downloads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.resources-downloads .download-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: all 0.4s ease;
}
.resources-downloads .download-item:hover {
  transform: translateY(-8px);
  border-color: #EE6F3F;
  box-shadow: 0 20px 40px rgba(238, 111, 63, 0.15);
}
.resources-downloads .download-item:hover .download-btn {
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  color: #fff;
}
.resources-downloads .download-item .download-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.2) 0%, rgba(255, 132, 86, 0.2) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #FF8456;
}
.resources-downloads .download-item h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 12px;
}
.resources-downloads .download-item p {
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 20px;
  line-height: 1.6;
}
.resources-downloads .download-item .download-btn {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins";
  transition: all 0.3s ease;
}

.resources-cta {
  padding: 100px 0;
}
.resources-cta .cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.resources-cta .cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
}
.resources-cta .cta-content p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 40px;
}
.resources-cta .cta-content .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .resources-hero {
    padding: 120px 0 80px;
  }
  .resources-hero .resources-hero-content .hero-title {
    font-size: 40px;
  }
  .resources-main .resources-grid {
    grid-template-columns: 1fr;
  }
  .resources-downloads .downloads-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .resources-downloads .downloads-grid {
    grid-template-columns: 1fr;
  }
}
.contact-hero {
  position: relative;
  padding: 150px 0 100px;
  overflow: hidden;
}
.contact-hero .contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.1) 0%, rgba(255, 132, 86, 0.1) 100%);
}
.contact-hero .contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.contact-hero .contact-hero-content .hero-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-hero .contact-hero-content .hero-title {
  font-size: 56px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-hero .contact-hero-content .hero-description {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
}

.contact-main {
  padding: 100px 0;
}
.contact-main .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-main .contact-info-section h2 {
  font-size: 36px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 15px;
}
.contact-main .contact-info-section .info-intro {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-main .contact-info-section .contact-methods {
  margin-bottom: 50px;
}
.contact-main .contact-info-section .contact-methods .contact-method {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}
.contact-main .contact-info-section .contact-methods .contact-method .method-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}
.contact-main .contact-info-section .contact-methods .contact-method .method-content h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 8px;
}
.contact-main .contact-info-section .contact-methods .contact-method .method-content p {
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 8px;
}
.contact-main .contact-info-section .contact-methods .contact-method .method-content a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins";
  color: #FF8456;
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.contact-main .contact-info-section .contact-methods .contact-method .method-content a:hover {
  color: #EE6F3F;
}
.contact-main .contact-info-section .contact-methods .contact-method .method-content address {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  font-style: normal;
  line-height: 1.6;
}
.contact-main .contact-info-section .contact-methods .contact-method .method-content .hours p {
  font-size: 15px;
  margin-bottom: 5px;
}
.contact-main .contact-info-section .social-links-section h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
}
.contact-main .contact-info-section .social-links-section .social-links {
  display: flex;
  gap: 15px;
}
.contact-main .contact-info-section .social-links-section .social-links .social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-main .contact-info-section .social-links-section .social-links .social-link:hover {
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-color: #EE6F3F;
  transform: translateY(-3px);
}
.contact-main .contact-form-section h2 {
  font-size: 36px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 15px;
}
.contact-main .contact-form-section .form-intro {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 35px;
  line-height: 1.7;
}
.contact-main .contact-form-section .contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
}
.contact-main .contact-form-section .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-main .contact-form-section .contact-form .form-group {
  margin-bottom: 20px;
}
.contact-main .contact-form-section .contact-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins";
  color: #fff;
  margin-bottom: 8px;
}
.contact-main .contact-form-section .contact-form .form-group input, .contact-main .contact-form-section .contact-form .form-group select, .contact-main .contact-form-section .contact-form .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #fff;
  transition: all 0.3s ease;
}
.contact-main .contact-form-section .contact-form .form-group input::placeholder, .contact-main .contact-form-section .contact-form .form-group select::placeholder, .contact-main .contact-form-section .contact-form .form-group textarea::placeholder {
  color: rgba(225, 239, 255, 0.5);
}
.contact-main .contact-form-section .contact-form .form-group input:focus, .contact-main .contact-form-section .contact-form .form-group select:focus, .contact-main .contact-form-section .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #EE6F3F;
  background: rgba(255, 255, 255, 0.08);
}
.contact-main .contact-form-section .contact-form .form-group select {
  cursor: pointer;
}
.contact-main .contact-form-section .contact-form .form-group select option {
  background: #142941;
  color: #fff;
}
.contact-main .contact-form-section .contact-form .form-group textarea {
  resize: vertical;
}
.contact-main .contact-form-section .contact-form .form-group.checkbox-group {
  margin-top: 25px;
}
.contact-main .contact-form-section .contact-form .form-group.checkbox-group .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.contact-main .contact-form-section .contact-form .form-group.checkbox-group .checkbox-label input[type=checkbox] {
  width: auto;
  margin-top: 4px;
}
.contact-main .contact-form-section .contact-form .form-group.checkbox-group .checkbox-label span {
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.6;
}
.contact-main .contact-form-section .contact-form .submit-btn {
  width: 100%;
  margin-top: 10px;
}

.contact-map {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.03) 0%, rgba(255, 132, 86, 0.03) 100%);
}
.contact-map .map-placeholder {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 100px 40px;
  text-align: center;
}
.contact-map .map-placeholder i {
  font-size: 80px;
  color: #FF8456;
  margin-bottom: 25px;
}
.contact-map .map-placeholder h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 15px;
}
.contact-map .map-placeholder p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 0 80px;
  }
  .contact-hero .contact-hero-content .hero-title {
    font-size: 40px;
  }
  .contact-main .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-main .contact-form-section .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.consultation-hero {
  position: relative;
  padding: 150px 0 100px;
  overflow: hidden;
}
.consultation-hero .consultation-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.1) 0%, rgba(255, 132, 86, 0.1) 100%);
}
.consultation-hero .consultation-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.consultation-hero .consultation-hero-content .hero-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.consultation-hero .consultation-hero-content .hero-title {
  font-size: 56px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.consultation-hero .consultation-hero-content .hero-description {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
}

.consultation-main {
  padding: 100px 0;
}
.consultation-main .consultation-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
.consultation-main .consultation-form-section h2 {
  font-size: 36px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 15px;
}
.consultation-main .consultation-form-section .form-intro {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 35px;
  line-height: 1.7;
}
.consultation-main .consultation-form-section .consultation-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
}
.consultation-main .consultation-form-section .consultation-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.consultation-main .consultation-form-section .consultation-form .form-group {
  margin-bottom: 20px;
}
.consultation-main .consultation-form-section .consultation-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins";
  color: #fff;
  margin-bottom: 8px;
}
.consultation-main .consultation-form-section .consultation-form .form-group input, .consultation-main .consultation-form-section .consultation-form .form-group select, .consultation-main .consultation-form-section .consultation-form .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #fff;
  transition: all 0.3s ease;
}
.consultation-main .consultation-form-section .consultation-form .form-group input::placeholder, .consultation-main .consultation-form-section .consultation-form .form-group select::placeholder, .consultation-main .consultation-form-section .consultation-form .form-group textarea::placeholder {
  color: rgba(225, 239, 255, 0.5);
}
.consultation-main .consultation-form-section .consultation-form .form-group input:focus, .consultation-main .consultation-form-section .consultation-form .form-group select:focus, .consultation-main .consultation-form-section .consultation-form .form-group textarea:focus {
  outline: none;
  border-color: #EE6F3F;
  background: rgba(255, 255, 255, 0.08);
}
.consultation-main .consultation-form-section .consultation-form .form-group select {
  cursor: pointer;
}
.consultation-main .consultation-form-section .consultation-form .form-group select option {
  background: #142941;
  color: #fff;
}
.consultation-main .consultation-form-section .consultation-form .form-group textarea {
  resize: vertical;
}
.consultation-main .consultation-form-section .consultation-form .form-group.checkbox-group {
  margin-top: 25px;
}
.consultation-main .consultation-form-section .consultation-form .form-group.checkbox-group .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.consultation-main .consultation-form-section .consultation-form .form-group.checkbox-group .checkbox-label input[type=checkbox] {
  width: auto;
  margin-top: 4px;
}
.consultation-main .consultation-form-section .consultation-form .form-group.checkbox-group .checkbox-label span {
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.6;
}
.consultation-main .consultation-form-section .consultation-form .submit-btn {
  width: 100%;
  margin-top: 10px;
}
.consultation-main .consultation-benefits-section h2 {
  font-size: 36px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 30px;
}
.consultation-main .consultation-benefits-section .benefits-list {
  margin-bottom: 40px;
}
.consultation-main .consultation-benefits-section .benefits-list .benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.consultation-main .consultation-benefits-section .benefits-list .benefit-item .benefit-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}
.consultation-main .consultation-benefits-section .benefits-list .benefit-item .benefit-content h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 8px;
}
.consultation-main .consultation-benefits-section .benefits-list .benefit-item .benefit-content p {
  font-size: 15px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.6;
}
.consultation-main .consultation-benefits-section .consultation-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.consultation-main .consultation-benefits-section .consultation-stats .stat-item {
  text-align: center;
}
.consultation-main .consultation-benefits-section .consultation-stats .stat-item .stat-number {
  font-size: 32px;
  font-weight: 700;
  font-family: "KoHo";
  color: #FF8456;
  margin-bottom: 5px;
}
.consultation-main .consultation-benefits-section .consultation-stats .stat-item .stat-label {
  font-size: 12px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.consultation-testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.03) 0%, rgba(255, 132, 86, 0.03) 100%);
}
.consultation-testimonials .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.consultation-testimonials .section-header .section-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.consultation-testimonials .section-header .section-title {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
}
.consultation-testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.consultation-testimonials .testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.4s ease;
}
.consultation-testimonials .testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #EE6F3F;
  box-shadow: 0 20px 40px rgba(238, 111, 63, 0.15);
}
.consultation-testimonials .testimonial-card .testimonial-content {
  margin-bottom: 25px;
}
.consultation-testimonials .testimonial-card .testimonial-content i {
  font-size: 32px;
  color: #FF8456;
  margin-bottom: 15px;
  opacity: 0.5;
}
.consultation-testimonials .testimonial-card .testimonial-content p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
  font-style: italic;
}
.consultation-testimonials .testimonial-card .testimonial-author h4 {
  font-size: 18px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 5px;
}
.consultation-testimonials .testimonial-card .testimonial-author p {
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
}

@media (max-width: 768px) {
  .consultation-hero {
    padding: 120px 0 80px;
  }
  .consultation-hero .consultation-hero-content .hero-title {
    font-size: 40px;
  }
  .consultation-main .consultation-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .consultation-main .consultation-form-section .consultation-form .form-row {
    grid-template-columns: 1fr;
  }
  .consultation-main .consultation-benefits-section .consultation-stats {
    grid-template-columns: 1fr;
  }
  .consultation-testimonials .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.blog-hero {
  position: relative;
  padding: 150px 0 100px;
  overflow: hidden;
}
.blog-hero .blog-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.blog-hero .blog-hero-content .hero-tagline {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-hero .blog-hero-content .hero-title {
  font-size: 56px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.blog-hero .blog-hero-content .hero-description {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
}

.ellipse-1 {
  position: absolute;
  top: 0;
  right: 0;
  height: 491px;
  z-index: 1;
}

.ellipse-2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 491px;
  z-index: 1;
}

.blog-listing-section .blog-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}
.blog-listing-section .blog-filters .filter-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: #E1EFFF;
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-listing-section .blog-filters .filter-btn:hover {
  border-color: #EE6F3F;
  color: #FF8456;
  transform: translateY(-2px);
}
.blog-listing-section .blog-filters .filter-btn.active {
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-color: #EE6F3F;
  color: #fff;
  font-weight: 500;
}
.blog-listing-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.blog-listing-section .blog-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.blog-listing-section .blog-card:hover {
  transform: translateY(-8px);
  border-color: #EE6F3F;
  box-shadow: 0 25px 50px rgba(238, 111, 63, 0.15);
}
.blog-listing-section .blog-card:hover .blog-image {
  transform: scale(1.05);
}
.blog-listing-section .blog-card:hover .blog-link {
  color: #FF8456;
}
.blog-listing-section .blog-card:hover .blog-link i {
  transform: translateX(5px);
}
.blog-listing-section .blog-card .blog-image {
  height: 220px;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.blog-listing-section .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-listing-section .blog-card .blog-image .blog-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
}
.blog-listing-section .blog-card .blog-image .blog-date .date-day {
  display: block;
  font-size: 28px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  line-height: 1;
}
.blog-listing-section .blog-card .blog-image .blog-date .date-month {
  display: block;
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #fff;
  text-transform: uppercase;
  margin-top: 4px;
}
.blog-listing-section .blog-card .blog-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-listing-section .blog-card .blog-content .blog-category {
  font-size: 12px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.blog-listing-section .blog-card .blog-content h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}
.blog-listing-section .blog-card .blog-content p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.blog-listing-section .blog-card .blog-content .blog-link {
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins";
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.blog-listing-section .blog-card .blog-content .blog-link i {
  transition: transform 0.3s ease;
}
.blog-listing-section .loading, .blog-listing-section .no-posts {
  text-align: center;
  padding: 60px 20px;
}
.blog-listing-section .loading p, .blog-listing-section .no-posts p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
}

.blog-cta {
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.1) 0%, rgba(255, 132, 86, 0.1) 100%);
}
.blog-cta .cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.blog-cta .cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
}
.blog-cta .cta-content p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 40px;
  line-height: 1.7;
}
.blog-cta .cta-content .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 120px 0 80px;
  }
  .blog-hero .blog-hero-content .hero-title {
    font-size: 40px;
  }
  .blog-hero .blog-hero-content .hero-description {
    font-size: 16px;
  }
  .blog-listing-section .blog-filters {
    gap: 10px;
  }
  .blog-listing-section .blog-filters .filter-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  .blog-listing-section .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-listing-section .blog-card .blog-image {
    height: 180px;
  }
  .blog-listing-section .blog-card .blog-image .blog-date {
    top: 15px;
    right: 15px;
    padding: 10px 12px;
  }
  .blog-listing-section .blog-card .blog-image .blog-date .date-day {
    font-size: 24px;
  }
  .blog-listing-section .blog-card .blog-image .blog-date .date-month {
    font-size: 12px;
  }
  .blog-listing-section .blog-card .blog-content {
    padding: 20px;
  }
  .blog-listing-section .blog-card .blog-content .blog-category {
    font-size: 11px;
  }
  .blog-listing-section .blog-card .blog-content h3 {
    font-size: 20px;
  }
  .blog-listing-section .blog-card .blog-content p {
    font-size: 14px;
  }
  .blog-cta .cta-content h2 {
    font-size: 36px;
  }
  .blog-cta .cta-content p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .blog-hero .blog-hero-content .hero-title {
    font-size: 32px;
  }
  .blog-listing-section .blog-filters .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  .blog-cta .cta-content h2 {
    font-size: 28px;
  }
}
.blog-detail-loading, .blog-not-found {
  padding: 150px 0;
  text-align: center;
}
.blog-detail-loading p, .blog-not-found p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 20px;
}
.blog-detail-loading h2, .blog-not-found h2 {
  font-size: 32px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 15px;
}

.blog-detail-section {
  padding: 150px 0 50px;
}
.blog-detail-section .blog-detail-header {
  max-width: 900px;
  margin: 0 auto 50px;
}
.blog-detail-section .blog-detail-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  text-decoration: none;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.blog-detail-section .blog-detail-header .back-link:hover {
  color: #EE6F3F;
}
.blog-detail-section .blog-detail-header .back-link:hover i {
  transform: translateX(-3px);
}
.blog-detail-section .blog-detail-header .back-link i {
  transition: transform 0.3s ease;
}
.blog-detail-section .blog-detail-header .blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blog-detail-section .blog-detail-header .blog-meta .blog-category {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-detail-section .blog-detail-header .blog-meta .blog-category.seo {
  background: rgba(238, 111, 63, 0.2);
  color: #FF8456;
  border: 1px solid rgba(238, 111, 63, 0.3);
}
.blog-detail-section .blog-detail-header .blog-meta .blog-category.social-media {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.blog-detail-section .blog-detail-header .blog-meta .blog-category.web-design {
  background: rgba(168, 85, 247, 0.2);
  color: #a78bfa;
  border: 1px solid rgba(168, 85, 247, 0.3);
}
.blog-detail-section .blog-detail-header .blog-meta .blog-category.content {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.blog-detail-section .blog-detail-header .blog-meta .blog-date {
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: rgba(225, 239, 255, 0.7);
}
.blog-detail-section .blog-detail-header .blog-title {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.blog-detail-section .blog-detail-header .blog-short-description {
  font-size: 20px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.7;
}
.blog-detail-section .blog-featured-image {
  max-width: 1200px;
  margin: 0 auto 50px;
  border-radius: 24px;
  overflow: hidden;
}
.blog-detail-section .blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.blog-detail-section .blog-content-wrapper {
  max-width: 900px;
  margin: 0 auto 50px;
}
.blog-detail-section .blog-content-wrapper .blog-content {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.8;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(h1), .blog-detail-section .blog-content-wrapper .blog-content :deep(h2), .blog-detail-section .blog-content-wrapper .blog-content :deep(h3), .blog-detail-section .blog-content-wrapper .blog-content :deep(h4), .blog-detail-section .blog-content-wrapper .blog-content :deep(h5), .blog-detail-section .blog-content-wrapper .blog-content :deep(h6) {
  font-family: "KoHo";
  color: #fff;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(h1) {
  font-size: 36px;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(h2) {
  font-size: 30px;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(h3) {
  font-size: 24px;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(p) {
  margin-bottom: 20px;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(ul), .blog-detail-section .blog-content-wrapper .blog-content :deep(ol) {
  margin: 20px 0;
  padding-left: 30px;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(ul) li, .blog-detail-section .blog-content-wrapper .blog-content :deep(ol) li {
  margin-bottom: 10px;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(a) {
  color: #FF8456;
  text-decoration: none;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(a):hover {
  text-decoration: underline;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(img) {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 30px 0;
  display: block;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(p img) {
  margin: 20px auto;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(figure) {
  margin: 30px 0;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(figure) img {
  margin: 0;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(.ql-align-center) {
  text-align: center;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(.ql-align-center) img {
  margin-left: auto;
  margin-right: auto;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(.ql-align-right) {
  text-align: right;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(.ql-align-right) img {
  margin-left: auto;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(blockquote) {
  border-left: 4px solid #FF8456;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: rgba(225, 239, 255, 0.8);
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(code) {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(pre) {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 30px 0;
}
.blog-detail-section .blog-content-wrapper .blog-content :deep(pre) code {
  background: none;
  padding: 0;
}
.blog-detail-section .blog-footer {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-detail-section .blog-footer .blog-tags, .blog-detail-section .blog-footer .blog-share {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-detail-section .blog-footer .blog-tags .tag-label, .blog-detail-section .blog-footer .blog-tags .share-label, .blog-detail-section .blog-footer .blog-share .tag-label, .blog-detail-section .blog-footer .blog-share .share-label {
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins";
  color: #E1EFFF;
}
.blog-detail-section .blog-footer .blog-tags .share-btn, .blog-detail-section .blog-footer .blog-share .share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E1EFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-detail-section .blog-footer .blog-tags .share-btn:hover, .blog-detail-section .blog-footer .blog-share .share-btn:hover {
  background: rgba(238, 111, 63, 0.2);
  border-color: #EE6F3F;
  color: #FF8456;
  transform: translateY(-2px);
}

.related-blogs-section {
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.03) 0%, rgba(255, 132, 86, 0.03) 100%);
}
.related-blogs-section .section-title {
  font-size: 36px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
.related-blogs-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.related-blogs-section .blog-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.related-blogs-section .blog-card:hover {
  transform: translateY(-8px);
  border-color: #EE6F3F;
  box-shadow: 0 25px 50px rgba(238, 111, 63, 0.15);
}
.related-blogs-section .blog-card .blog-image {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
}
.related-blogs-section .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-blogs-section .blog-card .blog-image .blog-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
}
.related-blogs-section .blog-card .blog-image .blog-date .date-day {
  display: block;
  font-size: 28px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  line-height: 1;
}
.related-blogs-section .blog-card .blog-image .blog-date .date-month {
  display: block;
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: #fff;
  text-transform: uppercase;
  margin-top: 4px;
}
.related-blogs-section .blog-card .blog-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-blogs-section .blog-card .blog-content .blog-category {
  font-size: 12px;
  font-weight: 500;
  font-family: "Poppins";
  color: #FF8456;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.related-blogs-section .blog-card .blog-content h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}
.related-blogs-section .blog-card .blog-content p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.related-blogs-section .blog-card .blog-content .blog-link {
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins";
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.related-blogs-section .blog-card .blog-content .blog-link i {
  transition: transform 0.3s ease;
}
.related-blogs-section .blog-card .blog-content .blog-link:hover {
  color: #FF8456;
}
.related-blogs-section .blog-card .blog-content .blog-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .blog-detail-section {
    padding: 120px 0 40px;
  }
  .blog-detail-section .blog-detail-header .blog-title {
    font-size: 32px;
  }
  .blog-detail-section .blog-detail-header .blog-short-description {
    font-size: 18px;
  }
  .blog-detail-section .blog-content-wrapper .blog-content {
    font-size: 16px;
  }
  .blog-detail-section .blog-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .related-blogs-section .blog-grid {
    grid-template-columns: 1fr;
  }
}
.admin-hero {
  position: relative;
  padding: 150px 0 80px;
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.1) 0%, rgba(255, 132, 86, 0.1) 100%);
}
.admin-hero .admin-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.admin-hero .admin-hero-content .hero-title {
  font-size: 48px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin-bottom: 15px;
}
.admin-hero .admin-hero-content .hero-description {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 30px;
}
.admin-hero .admin-hero-content .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.admin-hero .admin-hero-content .btn-primary i {
  font-size: 16px;
}

.admin-content .blog-form-wrapper {
  margin-bottom: 50px;
}
.admin-content .blog-form-wrapper .blog-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
}
.admin-content .blog-form-wrapper .blog-form .form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.admin-content .blog-form-wrapper .blog-form .form-header h2 {
  font-size: 32px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
}
.admin-content .blog-form-wrapper .blog-form .form-header .close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.admin-content .blog-form-wrapper .blog-form .form-header .close-btn:hover {
  background: rgba(238, 111, 63, 0.3);
  border-color: #EE6F3F;
}
.admin-content .blog-form-wrapper .blog-form .form-group {
  margin-bottom: 25px;
}
.admin-content .blog-form-wrapper .blog-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins";
  color: #E1EFFF;
  margin-bottom: 8px;
}
.admin-content .blog-form-wrapper .blog-form .form-group input, .admin-content .blog-form-wrapper .blog-form .form-group textarea, .admin-content .blog-form-wrapper .blog-form .form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-family: "Poppins";
  font-size: 16px;
  transition: all 0.3s ease;
}
.admin-content .blog-form-wrapper .blog-form .form-group input:focus, .admin-content .blog-form-wrapper .blog-form .form-group textarea:focus, .admin-content .blog-form-wrapper .blog-form .form-group select:focus {
  outline: none;
  border-color: #EE6F3F;
  background: rgba(255, 255, 255, 0.08);
}
.admin-content .blog-form-wrapper .blog-form .form-group input::placeholder, .admin-content .blog-form-wrapper .blog-form .form-group textarea::placeholder, .admin-content .blog-form-wrapper .blog-form .form-group select::placeholder {
  color: rgba(225, 239, 255, 0.5);
}
.admin-content .blog-form-wrapper .blog-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.admin-content .blog-form-wrapper .blog-form .form-group select {
  cursor: pointer;
}
.admin-content .blog-form-wrapper .blog-form .form-group select option {
  background: #1a1a2e;
  color: #fff;
}
.admin-content .blog-form-wrapper .blog-form .form-group small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: rgba(225, 239, 255, 0.6);
  font-family: "Poppins";
}
.admin-content .blog-form-wrapper .blog-form .form-group small.char-count {
  text-align: right;
  color: rgba(225, 239, 255, 0.8);
}
.admin-content .blog-form-wrapper .blog-form .form-group .image-upload-wrapper .upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.admin-content .blog-form-wrapper .blog-form .form-group .image-upload-wrapper .upload-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(238, 111, 63, 0.3);
}
.admin-content .blog-form-wrapper .blog-form .form-group .image-upload-wrapper .upload-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.admin-content .blog-form-wrapper .blog-form .form-group .image-upload-wrapper .image-preview {
  margin-top: 15px;
  position: relative;
  display: inline-block;
}
.admin-content .blog-form-wrapper .blog-form .form-group .image-upload-wrapper .image-preview img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}
.admin-content .blog-form-wrapper .blog-form .form-group .image-upload-wrapper .image-preview .remove-image-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.9);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.admin-content .blog-form-wrapper .blog-form .form-group .image-upload-wrapper .image-preview .remove-image-btn:hover {
  background: rgb(239, 68, 68);
  transform: scale(1.1);
}
.admin-content .blog-form-wrapper .blog-form .form-group .image-upload-wrapper .image-preview .image-error {
  color: #f87171;
  font-size: 12px;
  margin-top: 5px;
}
.admin-content .blog-form-wrapper .blog-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.admin-content .blog-form-wrapper .blog-form .form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
}
.admin-content .blog-form-wrapper .blog-form .form-actions button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.admin-content .blog-form-wrapper .blog-form :deep(.ql-container) {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-family: "Poppins";
  min-height: 300px;
}
.admin-content .blog-form-wrapper .blog-form :deep(.ql-container) .ql-editor {
  color: #fff;
  min-height: 300px;
}
.admin-content .blog-form-wrapper .blog-form :deep(.ql-container) .ql-editor::before {
  color: rgba(225, 239, 255, 0.5);
}
.admin-content .blog-form-wrapper .blog-form :deep(.ql-toolbar) {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px 12px 0 0;
}
.admin-content .blog-form-wrapper .blog-form :deep(.ql-toolbar) .ql-stroke {
  stroke: #E1EFFF;
}
.admin-content .blog-form-wrapper .blog-form :deep(.ql-toolbar) .ql-fill {
  fill: #E1EFFF;
}
.admin-content .blog-form-wrapper .blog-form :deep(.ql-toolbar) .ql-picker-label {
  color: #E1EFFF;
}
.admin-content .blog-form-wrapper .blog-form :deep(.ql-toolbar) button:hover .ql-stroke, .admin-content .blog-form-wrapper .blog-form :deep(.ql-toolbar) .ql-picker-label:hover .ql-stroke {
  stroke: #FF8456;
}
.admin-content .blog-form-wrapper .blog-form :deep(.ql-toolbar) button:hover .ql-fill, .admin-content .blog-form-wrapper .blog-form :deep(.ql-toolbar) .ql-picker-label:hover .ql-fill {
  fill: #FF8456;
}
.admin-content .blog-form-wrapper .blog-form :deep(.ql-toolbar) button.ql-active .ql-stroke {
  stroke: #FF8456;
}
.admin-content .blog-form-wrapper .blog-form :deep(.ql-toolbar) button.ql-active .ql-fill {
  fill: #FF8456;
}
.admin-content .blogs-list .list-header {
  margin-bottom: 30px;
}
.admin-content .blogs-list .list-header h2 {
  font-size: 32px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
}
.admin-content .blogs-list .loading, .admin-content .blogs-list .no-blogs {
  text-align: center;
  padding: 60px 20px;
}
.admin-content .blogs-list .loading p, .admin-content .blogs-list .no-blogs p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
}
.admin-content .blogs-list .blogs-table {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
}
.admin-content .blogs-list .blogs-table table {
  width: 100%;
  border-collapse: collapse;
}
.admin-content .blogs-list .blogs-table table thead {
  background: rgba(238, 111, 63, 0.1);
}
.admin-content .blogs-list .blogs-table table thead tr th {
  padding: 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins";
  color: #FF8456;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-content .blogs-list .blogs-table table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}
.admin-content .blogs-list .blogs-table table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.admin-content .blogs-list .blogs-table table tbody tr:last-child {
  border-bottom: none;
}
.admin-content .blogs-list .blogs-table table tbody tr td {
  padding: 20px;
  font-family: "Poppins";
  color: #E1EFFF;
}
.admin-content .blogs-list .blogs-table table tbody tr td strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}
.admin-content .blogs-list .blogs-table table tbody tr td small {
  display: block;
  font-size: 13px;
  color: rgba(225, 239, 255, 0.6);
}
.admin-content .blogs-list .blogs-table table tbody tr td .category-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-content .blogs-list .blogs-table table tbody tr td .category-badge.seo {
  background: rgba(238, 111, 63, 0.2);
  color: #FF8456;
  border: 1px solid rgba(238, 111, 63, 0.3);
}
.admin-content .blogs-list .blogs-table table tbody tr td .category-badge.social-media {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.admin-content .blogs-list .blogs-table table tbody tr td .category-badge.web-design {
  background: rgba(168, 85, 247, 0.2);
  color: #a78bfa;
  border: 1px solid rgba(168, 85, 247, 0.3);
}
.admin-content .blogs-list .blogs-table table tbody tr td .category-badge.content {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.admin-content .blogs-list .blogs-table .action-buttons {
  display: flex;
  gap: 10px;
}
.admin-content .blogs-list .blogs-table .action-buttons button {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 14px;
}
.admin-content .blogs-list .blogs-table .action-buttons button i {
  pointer-events: none;
}
.admin-content .blogs-list .blogs-table .action-buttons .btn-edit {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.admin-content .blogs-list .blogs-table .action-buttons .btn-edit:hover {
  background: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}
.admin-content .blogs-list .blogs-table .action-buttons .btn-delete {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.admin-content .blogs-list .blogs-table .action-buttons .btn-delete:hover {
  background: rgba(239, 68, 68, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .admin-hero {
    padding: 120px 0 60px;
  }
  .admin-hero .admin-hero-content .hero-title {
    font-size: 36px;
  }
  .admin-content .blog-form-wrapper .blog-form {
    padding: 30px 20px;
  }
  .admin-content .blog-form-wrapper .blog-form .form-header h2 {
    font-size: 24px;
  }
  .admin-content .blog-form-wrapper .blog-form .form-row {
    grid-template-columns: 1fr;
  }
  .admin-content .blogs-list .blogs-table {
    overflow-x: auto;
  }
  .admin-content .blogs-list .blogs-table table {
    min-width: 600px;
  }
}
@media (max-width: 480px) {
  .admin-hero .admin-hero-content .hero-title {
    font-size: 28px;
  }
  .admin-content .blog-form-wrapper .blog-form {
    padding: 20px 15px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(20, 41, 65, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.header.scrolled::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(238, 111, 63, 0.3) 50%, transparent 100%);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  position: relative;
}
.header-wrapper .logo {
  display: flex;
  align-items: center;
}
.header-wrapper .logo a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.header-wrapper .logo a img {
  width: 60px;
  height: auto;
  object-fit: contain;
}
.header-wrapper .logo .site-title {
  font-size: 20px;
  font-weight: 700;
  font-family: "KoHo";
  color: #fff;
  margin: 0;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}
.header-wrapper .logo .site-title span {
  color: #F78227;
  position: relative;
}
.header-wrapper .logo .site-title span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #F78227 0%, transparent 100%);
  opacity: 0.4;
}
.header-wrapper .menu ul {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header-wrapper .menu ul li {
  list-style: none;
  position: relative;
}
.header-wrapper .menu ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  display: inline-block;
}
.header-wrapper .menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #EE6F3F 0%, #FF8456 100%);
  transition: width 0.3s ease;
}
.header-wrapper .menu ul li a:hover {
  color: #fff;
}
.header-wrapper .menu ul li a:hover::after {
  width: 100%;
}
.header-wrapper .menu ul li a.router-link-active, .header-wrapper .menu ul li a.router-link-exact-active {
  color: #FF8456;
}
.header-wrapper .menu ul li a.router-link-active::after, .header-wrapper .menu ul li a.router-link-exact-active::after {
  width: 100%;
}
.header-wrapper .cta a {
  background: linear-gradient(135deg, rgba(238, 111, 63, 0.2) 0%, rgba(255, 132, 86, 0.2) 100%);
  border: 1px solid rgba(238, 111, 63, 0.5);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  height: auto;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Poppins";
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.header-wrapper .cta a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  transition: left 0.3s ease;
  z-index: -1;
}
.header-wrapper .cta a:hover {
  border-color: #EE6F3F;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(238, 111, 63, 0.3);
}
.header-wrapper .cta a:hover::before {
  left: 0;
}
.header-wrapper .cta a:active {
  transform: translateY(0);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}
.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

@media (max-width: 1024px) {
  .header-wrapper .menu ul {
    gap: 25px;
  }
  .header-wrapper .menu ul li a {
    font-size: 14px;
  }
  .header-wrapper .cta a,
  .header-wrapper .cta .btn-primary {
    padding: 8px 20px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .header .header-wrapper {
    padding: 15px 0;
  }
  .header .header-wrapper .logo a h1 {
    font-size: 22px;
  }
  .header .header-wrapper .mobile-menu-toggle {
    display: flex;
  }
  .header .header-wrapper .menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .header .header-wrapper .menu-backdrop.menu-open {
    display: block;
    opacity: 1;
  }
  .header .header-wrapper .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(20, 41, 65, 0.98);
    backdrop-filter: blur(10px);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  }
  .header .header-wrapper .menu ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .header .header-wrapper .menu ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .header-wrapper .menu ul li a {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
  }
  .header .header-wrapper .menu ul li a::after {
    display: none;
  }
  .header .header-wrapper .menu ul li a:hover {
    padding-left: 10px;
  }
  .header .header-wrapper .menu.menu-open {
    right: 0;
  }
  .header .header-wrapper.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  .header .header-wrapper.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .header .header-wrapper.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .header .header-wrapper .cta {
    display: none;
  }
}
@media (max-width: 480px) {
  .header .header-wrapper {
    padding: 12px 0;
  }
  .header .header-wrapper .logo a h1 {
    font-size: 20px;
  }
  .header .header-wrapper .mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
  }
  .header .header-wrapper .menu {
    width: 85%;
    max-width: 280px;
    padding: 70px 25px 25px;
  }
  .header .header-wrapper .menu ul li a {
    padding: 12px 0;
    font-size: 15px;
  }
}
@media (min-width: 769px) {
  .header.menu-open .header-wrapper .menu {
    display: block;
  }
}
.footer {
  background: linear-gradient(180deg, #1a2d42 0%, #20344A 100%);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(238, 111, 63, 0.5) 50%, transparent 100%);
}
.footer .ellipse-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 491px;
  z-index: 0;
  opacity: 0.6;
}
.footer .ellipse-4 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 491px;
  z-index: 0;
  opacity: 0.6;
}
.footer .footer-wrapper {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
  gap: 60px;
  padding-top: 40px;
  position: relative;
  z-index: 1;
}
.footer .footer-wrapper .widget .logo {
  margin-bottom: 25px;
}
.footer .footer-wrapper .widget .logo h1 {
  font-size: 28px;
  font-weight: 700;
  font-family: "KoHo";
  letter-spacing: -0.5px;
}
.footer .footer-wrapper .widget .logo h1 span {
  color: #F78227;
  position: relative;
}
.footer .footer-wrapper .widget .logo h1 span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #F78227 0%, transparent 100%);
  opacity: 0.3;
}
.footer .footer-wrapper .widget h3 {
  font-size: 18px;
  font-weight: 600;
  font-family: "KoHo";
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-wrapper .widget h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #EE6F3F 0%, transparent 100%);
}
.footer .footer-wrapper .widget p {
  font-size: 15px;
  font-weight: 300;
  font-family: "Poppins";
  color: #E1EFFF;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer .footer-wrapper .widget ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.footer .footer-wrapper .widget ul li {
  list-style: none;
  position: relative;
  padding-left: 0;
  transition: all 0.3s ease;
}
.footer .footer-wrapper .widget ul li::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #EE6F3F;
  transition: width 0.3s ease;
}
.footer .footer-wrapper .widget ul li:hover {
  padding-left: 15px;
}
.footer .footer-wrapper .widget ul li:hover::before {
  width: 10px;
}
.footer .footer-wrapper .widget ul li a {
  color: #E1EFFF;
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  font-family: "Poppins";
  display: inline-block;
  transition: all 0.3s ease;
  line-height: 1.6;
}
.footer .footer-wrapper .widget ul li a:hover {
  color: #FF8456;
  transform: translateX(3px);
}
.footer .footer-wrapper .widget-1 .logo {
  margin-bottom: 20px;
}
.footer .footer-wrapper .widget-1 p {
  max-width: 350px;
  margin-bottom: 25px;
}
.footer .footer-wrapper .widget-2 ul {
  gap: 14px;
}
.footer .footer-wrapper .widget-3 ul {
  gap: 14px;
}
.footer .footer-wrapper .widget-4 ul {
  gap: 14px;
  margin-bottom: 30px;
}
.footer .footer-wrapper .widget-4 ul:last-of-type {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 20px;
}
.footer .footer-wrapper .widget-4 ul:last-of-type li::before {
  display: none;
}
.footer .footer-wrapper .widget-4 ul:last-of-type li:hover {
  padding-left: 0;
}
.footer .footer-wrapper .widget-4 ul:last-of-type li a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #E1EFFF;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.footer .footer-wrapper .widget-4 ul:last-of-type li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, #EE6F3F 0%, #FF8456 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}
.footer .footer-wrapper .widget-4 ul:last-of-type li a i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.footer .footer-wrapper .widget-4 ul:last-of-type li a:hover {
  border-color: #EE6F3F;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(238, 111, 63, 0.3);
}
.footer .footer-wrapper .widget-4 ul:last-of-type li a:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.footer .footer-wrapper .widget-4 ul:last-of-type li a:hover i {
  transform: scale(1.1) rotate(5deg);
  color: #fff;
}
.footer .lower-footer {
  text-align: center;
  padding-top: 60px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}
.footer .lower-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #EE6F3F 50%, transparent 100%);
}
.footer .lower-footer p {
  font-size: 14px;
  font-weight: 300;
  font-family: "Poppins";
  color: rgba(225, 239, 255, 0.7);
  letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
  .footer .footer-wrapper {
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 50px;
  }
}
@media (max-width: 1024px) {
  .footer {
    padding: 70px 0 25px;
  }
  .footer .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  .footer .footer-wrapper .widget .logo h1 {
    font-size: 26px;
  }
  .footer .footer-wrapper .widget h3 {
    font-size: 17px;
  }
  .footer .footer-wrapper .widget p {
    font-size: 14px;
  }
  .footer .footer-wrapper .widget ul li a {
    font-size: 14px;
  }
  .footer .footer-wrapper .widget-1 {
    grid-column: 1/-1;
  }
  .footer .footer-wrapper .widget-1 p {
    max-width: 100%;
  }
  .footer .ellipse-3,
  .footer .ellipse-4 {
    height: 350px;
    opacity: 0.4;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 25px;
  }
  .footer .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer .footer-wrapper .widget .logo {
    margin-bottom: 20px;
  }
  .footer .footer-wrapper .widget .logo h1 {
    font-size: 24px;
  }
  .footer .footer-wrapper .widget h3 {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .footer .footer-wrapper .widget p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .footer .footer-wrapper .widget ul {
    gap: 10px;
  }
  .footer .footer-wrapper .widget ul li a {
    font-size: 14px;
  }
  .footer .footer-wrapper .widget-1 p {
    margin-bottom: 20px;
  }
  .footer .footer-wrapper .widget-4 ul:last-of-type {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 15px;
  }
  .footer .footer-wrapper .widget-4 ul:last-of-type li a {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  .footer .ellipse-3,
  .footer .ellipse-4 {
    height: 250px;
    opacity: 0.3;
  }
  .footer .lower-footer {
    padding-top: 40px;
    margin-top: 40px;
  }
  .footer .lower-footer p {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 50px 0 20px;
  }
  .footer .footer-wrapper {
    gap: 35px;
    padding-top: 30px;
  }
  .footer .footer-wrapper .widget .logo {
    margin-bottom: 18px;
  }
  .footer .footer-wrapper .widget .logo h1 {
    font-size: 22px;
  }
  .footer .footer-wrapper .widget h3 {
    font-size: 15px;
    margin-bottom: 18px;
    padding-bottom: 8px;
  }
  .footer .footer-wrapper .widget p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .footer .footer-wrapper .widget ul {
    gap: 8px;
  }
  .footer .footer-wrapper .widget ul li a {
    font-size: 13px;
  }
  .footer .footer-wrapper .widget-4 ul:last-of-type {
    gap: 8px;
    margin-top: 12px;
  }
  .footer .footer-wrapper .widget-4 ul:last-of-type li a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .footer .ellipse-3,
  .footer .ellipse-4 {
    height: 200px;
    opacity: 0.25;
  }
  .footer .lower-footer {
    padding-top: 35px;
    margin-top: 35px;
  }
  .footer .lower-footer p {
    font-size: 12px;
  }
}

/*# sourceMappingURL=style.css.map */
