/* =========================================
   1. main style
   ========================================= */
@font-face {
  font-family: 'Kalameh';
  src: url('../fonts/woff2/thin.woff2') format('woff2'), url('../fonts/woff/thin.woff') format('woff'), url('../fonts/ttf/thin.ttf') format('truetype');
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: 'Kalameh';
  src: url('../fonts/woff2/regular.woff2') format('woff2'), url('../fonts/woff/regular.woff') format('woff'), url('../fonts/ttf/regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Kalameh';
  src: url('../fonts/woff2/bold.woff2') format('woff2'), url('../fonts/woff/bold.woff') format('woff'), url('../fonts/ttf/bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Kalameh';
  src: url('../fonts/woff2/black.woff2') format('woff2'), url('../fonts/woff/black.woff') format('woff'), url('../fonts/ttf/black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

body {
  font-family: 'Kalameh', sans-serif;
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
  color: #777;
  font-weight: 400;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  transition: all 0.3s ease;
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1e1e1e;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 0px;
}

.btn-primary {
  display: inline-block;
  background-color: #FF6B35;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary:hover {
  background-color: #E63946;
  color: #fff;
  transform: translateY(-3px);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 30px;
  border-radius: 30px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #FF6B35;
}

.btn-outline {
  display: inline-block;
  border: 1px solid #FF6B35;
  color: #FF6B35;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #FF6B35;
  color: #fff;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #894b9d;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-content {
  width: 50px;
  height: 50px;
  border: 4px solid #fff;
  border-top-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* =========================================
   2. header
   ========================================= */

.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease-in-out;

  width: 95%;
  max-width: 1170px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50px;
  padding-top: 0;

  background: rgba(255, 107, 53, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px 0 5px;
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-name {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.brand-slogan {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding-top: 4px;
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 20px;
  }

  .brand-slogan {
    display: none;
  }
}

.site-header .nav {
  display: flex;
  align-items: center;
  margin-left: 0;
}

.site-header .nav li {
  padding-left: 15px;
  padding-right: 15px;
}

.site-header .nav li a {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  transition: all 0.3s ease;
  height: 40px;
  line-height: 40px;
}

.site-header .nav li a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.site-header .menu-btn a {
  background: #fff;
  color: #FF6B35 !important;
  padding: 0 25px;
  border-radius: 25px;
}

.site-header .menu-btn a:hover {
  background: #E63946;
  color: #fff !important;
}

.menu-trigger {
  display: none;
}

@media (max-width: 991px) {

  .site-header .main-nav {
    position: relative;
    height: 70px;
    padding: 0 15px;
  }

  .menu-trigger {
    display: block !important;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: 32px;
    height: 40px;
    cursor: pointer;
    z-index: 1002;
  }

  .menu-trigger span,
  .menu-trigger span:before,
  .menu-trigger span:after {
    background-color: #fff;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s;
    content: '';
  }

  .menu-trigger span {
    top: 50%;
    margin-top: -1px;
  }

  .menu-trigger span:before {
    top: -10px;
  }

  .menu-trigger span:after {
    top: 10px;
  }

  .menu-trigger.active span {
    background-color: transparent;
  }

  .menu-trigger.active span:before {
    transform: rotate(45deg);
    top: 0;
  }

  .menu-trigger.active span:after {
    transform: rotate(-45deg);
    top: 0;
  }

  .site-header .nav {
    top: 40px;
    border-radius: 15px;
    background: #fff;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .site-header .nav li a {
    color: #333 !important;
  }
}

@media (max-width: 991px) {
  .site-header .main-nav {
    height: auto;
  }

  .site-header .nav {
    display: none;
    width: 100%;
    text-align: center;
    background: #fff;
    position: absolute;
    top: 52px;
    left: 0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }

  .site-header .nav li {
    border-bottom: 1px solid #eee;
    padding: 0;
  }

  .site-header .nav li a {
    color: #333 !important;
    height: 50px;
    line-height: 50px;
  }

  .site-header .nav li a:hover {
    color: #ff589e !important;
  }

  .menu-trigger {
    display: block;
  }

  .hero-section {
    padding-top: 140px;
    text-align: center;
    margin-bottom: -150px;
  }

  .services-section {
    margin-top: 0;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .process-image {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {

  .hero-buttons .btn-secondary,
  .hero-buttons .btn-primary {
    display: block;
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }
}

/* =========================================
   3. welcome area
   ========================================= */

.hero-section {
  background-image: url(../images/banner-bg.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 180px 0 224px 0;
  position: relative;
  text-align: right;
}

.hero-content h1 {
  margin-bottom: 20px;
  color: #444444;
  font-size: 42px;
  line-height: 1.5;
  font-weight: 900;
}

.hero-content p {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 40px;
  text-align: justify;
}

/* =========================================
   4. Features
   ========================================= */

.services-section {
  position: relative;
  padding: 80px 0;
  margin-top: -160px;
  z-index: 9;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 80px;
}

.section-heading h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 15px;
}

.section-heading .line-dec {
  width: 60px;
  height: 2px;
  background-color: #FF6B35;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

@keyframes buzzer {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-3px) rotate(-1deg);
  }

  50% {
    transform: translateX(3px) rotate(1deg);
  }

  75% {
    transform: translateX(-3px) rotate(-1deg);
  }

  100% {
    transform: translateX(0);
  }
}

.service-card:hover {
  animation: buzzer 0.4s ease-in-out;
  cursor: pointer;
}

.service-card .icon {
  margin-bottom: 20px;
  transition: all 0.3s;
}

.service-card:hover .icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e1e1e;
}

.service-card p {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 0;
}

@media (max-width: 991px) {

  .service-card {
    height: auto !important;
    margin-bottom: 40px !important;
  }

  .col-12:last-child .service-card {
    margin-bottom: 0 !important;
  }
}

/* =========================================
   5. Process
   ========================================= */

.process-section {
  padding-top: 45px;
  padding-bottom: 150px;
  background-color: #f2f2fe;
  position: relative;
}

.process-steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.process-step-item {
  flex: 0 0 calc(20% - 20px);
  max-width: calc(20% - 20px);
}

.process-card {
  background: #fff;
  padding: 30px 15px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-bottom: 4px solid transparent;
  overflow: hidden;
  z-index: 1;
}

.process-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-bottom-color: #FF6B35;
}

.step-number {
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(127deg, #FF9F43 0%, #E63946 91%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  transition: all 0.4s;
  transform: scale(0.9);
}

.process-card:hover .step-number {
  opacity: 1;
  transform: scale(1.1);
}

.process-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.process-card p {
  font-size: 13px;
  color: #777;
  line-height: 24px;
  margin: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {

  .process-step-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {

  .process-step-item {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    margin-bottom: 15px;
  }

  .process-steps-container {
    gap: 15px;
  }
}

@media (max-width: 480px) {

  .process-step-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* =========================================
   6. Pricing
   ========================================= */

.pricing-section {
  padding: 100px 0;
  background: #fff;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-card.featured {
  background: linear-gradient(135deg, #FF9F43 0%, #E63946 100%);
  border: none;
}

.pricing-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1e1e1e;
}

.pricing-card .price {
  font-size: 32px;
  font-weight: 700;
  margin: 20px 0;
  color: #FF6B35;
}

.pricing-card .price span {
  font-size: 14px;
  color: #777;
  font-weight: 400;
}

.pricing-card ul li {
  margin-bottom: 15px;
  font-size: 14px;
  color: #777;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .price span,
.pricing-card.featured ul li {
  color: #fff;
}

.pricing-card.featured .btn-primary {
  background: #fff;
  color: #E63946;
}

.pricing-card.featured .btn-primary:hover {
  background: #f2f2f2;
}

.pricing-body ul {
  text-align: right;
  padding: 0;
  margin: 0;
}

.pricing-body ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.pricing-body ul li img {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  flex-shrink: 0;
}

.pricing-body ul li.no {
  color: #bbb;
  text-decoration: line-through;
}

.pricing-body ul li.no img {
  opacity: 0.6;
}

.pricing-card.featured .pricing-body ul li {
  color: #fff;
}

.pricing-card.featured .pricing-body ul li.no {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
  .pricing-card {
    height: auto !important;
    margin-bottom: 40px !important;
  }

  .col-lg-4:last-child .pricing-card {
    margin-bottom: 0 !important;
  }
}

.pricing-alert-box {
  background: #fff5f5;
  border: 2px dashed #E63946;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-alert-box:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.15);
  transform: translateY(-3px);
}

.pricing-alert-box p {
  margin: 0;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 500;
}

.pricing-alert-box strong {
  color: #E63946;
}

.pricing-alert-box .highlight {
  background: #FF6B35;
  color: #fff;
  padding: 2px 10px;
  border-radius: 5px;
  font-weight: 900;
  display: inline-block;
  transform: rotate(-2deg);
}

.pricing-alert-box .gift-icon {
  font-size: 32px;
  animation: tada 1.5s infinite;
}

@keyframes tada {
  0% {
    transform: scale(1);
  }

  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

@media (max-width: 767px) {
  .pricing-alert-box {
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================================
   7. FAQ
   ========================================= */

.faq-section {
  padding: 100px 0;
  padding-top: 0px;
  background: #fdfdfd;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-card {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid transparent;
}

.faq-card[open] {
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-3px);
}

.faq-card summary {
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #1e1e1e;
  font-size: 16px;
  transition: all 0.3s;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card[open] summary {
  color: #FF6B35;
  background-color: rgba(255, 107, 53, 0.03);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.icon-close {
  display: none;
}

.faq-card[open] .icon-open {
  display: none;
}

.faq-card[open] .icon-close {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: rotate(-90deg);
  }

  to {
    opacity: 1;
    transform: rotate(0);
  }
}

.faq-content {
  padding: 25px 25px 25px 25px;
  color: #666;
  line-height: 2.8;
  font-size: 15px;
  animation: slideDown 0.4s ease;
  text-align: justify;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   8. Portfolio
   ========================================= */

.portfolio-section {
  padding: 100px 0;
  background: #fff;
}

.portfolio-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.portfolio-item .thumb {
  position: relative;
  overflow: hidden;
}

.portfolio-item .thumb img {
  width: 100%;
  height: auto;
  transition: all 0.4s ease;
  display: block;
}

.portfolio-item:hover .thumb img {
  transform: scale(1.1);
}

.portfolio-item .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(30, 30, 30, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.portfolio-item:hover .hover-content {
  opacity: 1;
  visibility: visible;
}

.portfolio-item .inner-content {
  transform: translateY(30px);
  transition: all 0.4s ease 0.1s;
}

.portfolio-item:hover .inner-content {
  transform: translateY(0);
}

.portfolio-item h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.portfolio-item span {
  display: block;
  color: #FF6B35;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.portfolio-item .view-btn {
  display: inline-block;
  background: #fff;
  color: #1e1e1e;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
}

.portfolio-item .view-btn:hover {
  background: #FF6B35;
  color: #fff;
}

/* =========================================
   9. Testimonials
   ========================================= */

.testimonials-section {
  padding: 100px 0;
  background-color: #f2f2fe;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-bottom-color: #FF6B35;
}

.testimonial-card .quote-bg {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 120px;
  color: rgba(0, 0, 0, 0.03);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 15px;
  border: 2px solid #FF6B35;
  padding: 2px;
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.client-details h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1e1e1e;
}

.client-details span {
  font-size: 12px;
  color: #777;
  display: block;
}

.rating {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  line-height: 26px;
  color: #555;
  font-style: italic;
}

/* =========================================
   10. Contact
   ========================================= */

.contact-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  margin-top: -60px;
  padding-top: 0px;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(#FF6B35 0.5px, transparent 0.5px);
  background-size: 20px 20px;
  opacity: 0.05;
  pointer-events: none;
}

a.contact-card {
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
  position: relative;
  z-index: 2;
  text-decoration: none;
}

a.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
}

.contact-card .icon-box {
  width: 80px;
  height: 80px;
  background: #fff5f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: all 0.4s ease;
}

.contact-card .icon-box img {
  width: 35px;
  height: 35px;
  transition: all 0.4s ease;
}

a.contact-card:hover .icon-box {
  background: #FF6B35;
  transform: rotate(15deg) scale(1.1);
}

a.contact-card:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.contact-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e1e1e;
}

.contact-card p {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

.contact-text {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: #FF6B35;
  transition: color 0.3s;
}

.ltr-text {
  direction: ltr;
}

.contact-text.address-text {
  font-size: 14px;
  line-height: 1.6;
  direction: rtl;
}

a.contact-card:hover .contact-text {
  color: #E63946;
}

.cta-socials p {
  font-size: 16px;
  font-weight: 500;
  color: #555;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  padding: 12px 30px;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  color: #333;
}

.social-btn img {
  width: 24px;
  margin-left: 10px;
}

.social-btn.whatsapp {
  color: #25D366;
  border-color: #25D366;
}

.social-btn.whatsapp:hover {
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.social-btn.telegram {
  color: #0088cc;
  border-color: #0088cc;
}

.social-btn.telegram:hover {
  background: #0088cc;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.4);
}

.social-btn {
  animation: floatBtn 3s ease-in-out infinite;
}

@keyframes floatBtn {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  a.contact-card {
    margin-bottom: 20px;
    height: auto;
  }

  .social-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .social-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   11. Main Content
   ========================================= */

.seo-text-content h2 {
  font-size: 25px;
  font-weight: 900;
  color: #1e1e1e;
  margin-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
  line-height: 2.4;
  text-align: center;
}

.seo-text-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: #FF6B35;
  margin-top: 35px;
  margin-bottom: 15px;
  position: relative;
  padding-right: 15px;
}

.seo-text-content h3::before {
  content: '';
  position: absolute;
  right: 0;
  top: 5px;
  bottom: 5px;
  width: 4px;
  background: #FF6B35;
  border-radius: 4px;
}

.seo-text-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  background-color: #f4f4f4;
  padding: 10px 15px;
  border-radius: 8px;
  margin-top: 25px;
  margin-bottom: 15px;
  display: inline-block;
}

.seo-text-content p {
  font-size: 15px;
  line-height: 2.8rem;
  color: #555;
  text-align: justify;
  margin-bottom: 15px;
}

.seo-text-content ul {
  padding-right: 20px;
  margin-bottom: 25px;
  background: #fffbf8;
  padding: 20px 40px 20px 20px;
  border-radius: 10px;
  border: 1px dashed #e0e0e0;
}

.seo-text-content ul li {
  list-style: none;
  position: relative;
  margin-bottom: 12px;
  color: #444;
  font-weight: 500;
}

.seo-text-content ul li::before {
  content: "✔";
  color: #2ecc71;
  position: absolute;
  right: -25px;
  font-weight: bold;
}

.seo-text-content strong {
  color: #000;
  font-weight: 800;
  background: rgba(255, 107, 53, 0.1);
  padding: 0 4px;
  border-radius: 4px;
}

.seo-content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
}

.seo-box-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  position: relative;
}

.seo-text-content {
  position: relative;
  max-height: 160px;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 90%);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.seo-text-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1e1e1e;
  margin-bottom: 15px;
}

.seo-text-content p {
  font-size: 15px;
  line-height: 2.8rem;
  color: #555;
  text-align: justify;
  margin-bottom: 15px;
}

.seo-text-content ul {
  list-style-type: disc;
  margin-bottom: 20px;
  color: #555;
  line-height: 2.8rem;
}

.seo-action-area {
  text-align: center;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.seo-toggle-btn {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FF6B35;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.seo-toggle-btn:hover {
  background: #FF6B35;
  color: #fff;
  border-color: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.seo-toggle-btn .btn-icon {
  width: 14px;
  height: auto;
  transition: transform 0.5s ease;
}

.seo-text-content.expanded {
  max-height: 10000px;
}

.seo-text-content.expanded .fade-mask {
  opacity: 0;
  pointer-events: none;
}

.seo-toggle-btn.active .btn-icon {
  transform: rotate(180deg);
}

.seo-toggle-btn:hover .btn-icon {
  filter: brightness(0) invert(1);
}

/* =========================================
   12. Back To Up
   ========================================= */

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(127deg, #FF9F43 0%, #E63946 91%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.back-to-top img {
  width: 20px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.5);
}

.back-to-top:hover img {
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    left: 20px;
  }

  .back-to-top img {
    width: 16px;
  }
}

/* =========================================
   13. Footer
   ========================================= */

.site-footer {
  background-image: linear-gradient(127deg, #FF9F43 0%, #E63946 91%);
  padding: 30px 0;
  color: #fff;
}

.site-footer p {
  color: #fff;
  margin-bottom: 0;
  font-size: 14px;
}

/* =========================================
   14. Scrollbar
   ========================================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
  background-image: linear-gradient(180deg, #FF9F43 0%, #E63946 100%);
  border-radius: 10px;
  border: 2px solid #f8f9fa;
}

::-webkit-scrollbar-thumb:hover {
  background-image: linear-gradient(180deg, #E63946 0%, #d63031 100%);
}

html {
  scrollbar-width: thin;
  scrollbar-color: #FF6B35 #f8f9fa;
}