@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --brand-cream: #f8f4ee;
  --brand-sand: #e7d7c4;
  --brand-forest: #1b3026;
  --brand-forest-rgb: 27, 48, 38;
  --brand-deep: #0d1713;
  --brand-border: rgba(20, 35, 28, 0.08);
  --brand-card: rgba(255, 255, 255, 0.88);
  --brand-shadow: 0 26px 90px rgba(18, 31, 25, 0.12);
  --brand-soft-shadow: 0 16px 50px rgba(18, 31, 25, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(var(--primary-color-rgb), 0.15), transparent 28%),
    radial-gradient(circle at right 15%, rgba(var(--brand-forest-rgb), 0.06), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #f6f0e8 100%);
  color: #55605c;
  font-family: "Manrope", var(--body-font);
}

body.locked {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #18231e;
  letter-spacing: -0.04em;
}

a {
  transition: all 0.28s ease;
}

.site-header {
  position: relative;
  z-index: 99;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1320px, calc(100% - 24px));
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.site-header .header-topbar {
  background: linear-gradient(135deg, rgba(20, 34, 28, 0.92) 0%, rgba(33, 59, 48, 0.88) 100%);
}

.site-header .topbar-wrapper {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header .topbar-info a,
.site-header .topbar-info li,
.site-header .topbar-social a {
  color: rgba(255, 255, 255, 0.9);
}

.site-header .main-menu {
  border-bottom: 1px solid rgba(var(--brand-forest-rgb), 0.08);
  backdrop-filter: none;
  background: rgba(255, 255, 255, 0.72);
}

.site-header .main-menu-wrapper {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  border-radius: 30px;
  min-height: 96px;
  padding: 0 28px !important;
  flex-wrap: nowrap;
  gap: 28px;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header .main-menu-logo {
  flex: 0 0 auto;
}

.site-header .main-menu-logo img {
  max-height: 54px;
  width: auto;
}

.site-header .main-nav-menu {
  flex: 1 1 auto;
  justify-content: center;
  margin-left: 8px !important;
  margin-right: 0 !important;
}

.site-header .main-nav-menu > li {
  flex: 0 0 auto;
}

.site-header .main-nav-menu > li + li {
  margin-left: 34px !important;
}

.site-header .main-nav-menu > li > a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--brand-forest);
  padding: 36px 0 !important;
}

.site-header .main-nav-menu > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #d1b396 100%);
  transition: width 0.28s ease;
}

.site-header .main-nav-menu > li:hover > a::before,
.site-header .main-nav-menu > li.current > a::before {
  width: 100%;
}

.site-header .main-nav-menu > li.menu-has-sub > a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  font-family: inherit !important;
  font-size: 0 !important;
}

.site-header .main-nav-menu > li > ul {
  border: 1px solid rgba(var(--brand-forest-rgb), 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--brand-shadow);
  background: rgba(255, 255, 255, 0.96);
}

.site-header .main-nav-menu > li > ul > li > a {
  font-weight: 600;
}

.site-header .main-menu-right {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 14px;
  margin-left: 0 !important;
}

.header-booking-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #d5ad86 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 18px 38px rgba(var(--primary-color-rgb), 0.28);
}

.header-booking-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(var(--primary-color-rgb), 0.34);
}

.site-header .header-contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(var(--brand-forest-rgb), 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--brand-soft-shadow);
}

.site-header .header-contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(var(--primary-color-rgb), 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header .call-text {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.site-header .phone-no {
  margin: 0;
  line-height: 1.1;
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto 0;
}

.home-page .site-header .header-topbar {
  background: transparent;
}

.home-page .site-header .main-menu {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.home-page .site-header .main-menu-wrapper {
  background: linear-gradient(180deg, rgba(18, 30, 24, 0.88) 0%, rgba(18, 30, 24, 0.74) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(4, 11, 8, 0.28);
  margin-top: 18px;
}

.home-page .site-header .main-nav-menu > li > a,
.home-page .site-header .topbar-info a,
.home-page .site-header .topbar-info li,
.home-page .site-header .topbar-social a,
.home-page .site-header .phone-no a,
.home-page .site-header .call-text {
  color: #fff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.home-page .site-header .header-contact-info {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}

.home-page .header-booking-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #d5ad86 100%);
  border: 0;
  box-shadow: 0 18px 38px rgba(var(--primary-color-rgb), 0.34);
}

.home-page .header-booking-cta:hover {
  background: linear-gradient(135deg, #9a7751 0%, #e3be95 100%);
  box-shadow: 0 22px 42px rgba(var(--primary-color-rgb), 0.42);
}

.home-page .site-header .header-contact-info-icon {
  background: rgba(255, 255, 255, 0.12);
}

.site-header .mobile-nav-toggler span {
  background: currentColor;
}

.home-page .site-header .mobile-nav-toggler {
  color: #fff;
}

.site-header .sticky-header--cloned {
  top: 0;
  left: 0;
  width: 100%;
}

.site-header .sticky-header--cloned .main-menu-wrapper {
  margin-top: 0;
  border-radius: 0 0 24px 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 0;
}

.site-header .sticky-header--cloned.sticky-fixed {
  box-shadow: 0 14px 50px rgba(15, 25, 20, 0.1);
}

.site-header .sticky-header--cloned .main-nav-menu > li > a,
.site-header .sticky-header--cloned .phone-no a,
.site-header .sticky-header--cloned .call-text,
.site-header .sticky-header--cloned .main-nav-menu > li.menu-has-sub > a::after,
.site-header .sticky-header--cloned .mobile-nav-toggler {
  color: var(--brand-forest) !important;
  text-shadow: none;
}

.home_banner_02 {
  padding: 0 18px;
}

.home_banner_02 .home-carousel {
  overflow: hidden;
  border-radius: 0 0 42px 42px;
}

.home_banner_02 .slide-item {
  min-height: 100vh;
  position: relative;
}

.home_banner_02 .slide-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 20, 17, 0.74) 0%, rgba(12, 20, 17, 0.38) 42%, rgba(12, 20, 17, 0.12) 100%),
    radial-gradient(circle at 20% 30%, rgba(var(--primary-color-rgb), 0.18), transparent 28%);
  z-index: 1;
}

.home_banner_02 .home-carousel .slide-item:after {
  display: none;
}

.home_banner_02 .auto-container,
.home_banner_02 .content-column,
.home_banner_02 .content-box {
  position: relative;
  z-index: 2;
}

.home_banner_02 .content-column {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.home_banner_02 .content-box {
  max-width: 790px;
  padding: 18px 0 18px 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home_banner_02 .content-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff 0%, var(--primary-color) 100%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(var(--primary-color-rgb), 0.2);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-subline {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
}

.hero-secondary-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.home_banner_02 .home-carousel-title {
  color: #fff;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
}

.home_banner_02 .home-carousel-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 640px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.hero-badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.animate-btn-style2,
.animate-btn-style3,
.animate-btn-style4 {
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(var(--primary-color-rgb), 0.24);
  font-weight: 700;
}

.animate-btn-style2:hover,
.animate-btn-style3:hover,
.animate-btn-style4:hover {
  transform: translateY(-2px);
}

.home_banner_02 .home-carousel .owl-nav button {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(15, 25, 20, 0.46) !important;
  color: #fff !important;
}

.home_banner_02 .home-carousel .owl-nav button:hover {
  background: var(--primary-color) !important;
}

.brand-overview-section {
  position: relative;
  margin-top: 0;
  padding-top: 34px;
  z-index: 12;
}

.brand-overview-panel {
  padding: 42px;
  border: 1px solid var(--brand-border);
  border-radius: 36px;
  background: #fff;
  box-shadow: var(--brand-shadow);
  backdrop-filter: none;
}

.brand-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.brand-overview-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-overview-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.brand-overview-copy h2 {
  margin-bottom: 14px;
  color: var(--brand-forest);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.brand-overview-copy p {
  margin: 0;
  max-width: 620px;
  color: #61706a;
  font-size: 1rem;
}

.brand-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.brand-feature-card {
  padding: 26px 22px;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f0e7 100%);
  box-shadow: 0 20px 44px rgba(18, 31, 25, 0.06);
}

.brand-feature-card i {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(var(--primary-color-rgb), 0.12);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.brand-feature-card h4 {
  margin-bottom: 8px;
  color: var(--brand-forest);
  font-size: 1.08rem;
}

.brand-feature-card p {
  margin: 0;
  color: #6b7873;
  font-size: 0.94rem;
}

.feature-work-section,
.service-section-style2,
.testimonial-style2-section,
.contact-section,
.blog-single-news,
.service-details-page,
.page-title-section,
.pdt-110 {
  position: relative;
}

.feature-work-section,
.service-section-style2,
.testimonial-style2-section,
.blog-single-news {
  margin: 18px;
}

.section-title .sub-title,
.section-title-left .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--primary-color);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title .sub-title::before,
.section-title-left .sub-title::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section-title .title,
.section-title-left .title {
  color: var(--brand-forest);
  letter-spacing: -0.04em;
}

.feature-work-section::before,
.service-section-style2::before,
.testimonial-style2-section::before,
.contact-section::before,
.blog-single-news::before,
.service-details-page::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid var(--brand-border);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--brand-soft-shadow);
  z-index: 0;
}

.feature-work-section .section-content,
.service-section-style2 > .section-title,
.service-section-style2 > .section-content,
.testimonial-style2-section .section-title,
.testimonial-style2-section .section-content,
.contact-section .container,
.blog-single-news .container,
.service-details-page .container {
  position: relative;
  z-index: 1;
}

.about-image-box-style4,
.service-style2 .service-item-thumb,
.project-item-style1 .project-item-thumb,
.testimonial-item,
.news-wrapper,
.sidebar-widget-need-help,
.service-nav-menu,
.single-news-details,
.widget-popular-posts {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--brand-shadow);
}

.service-style2,
.project-item-style1,
.news-wrapper,
.testimonial-item {
  border: 1px solid var(--brand-border);
  background: #fff;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.service-style2:hover,
.project-item-style1:hover,
.news-wrapper:hover,
.testimonial-item:hover {
  transform: translateY(-8px);
}

.project-item-style1,
.service-style2,
.news-wrapper {
  padding: 14px;
  border-radius: 30px;
}

.project-item-style1 .project-item-thumb::before,
.service-style2 .service-item-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 28, 23, 0) 0%, rgba(17, 28, 23, 0.76) 100%);
  z-index: 1;
}

.project-item-style1 .project-item-link-icon,
.project-item-style1 .project-item-details,
.service-style2 .service-item-content,
.service-style2 .service-item-icon {
  position: relative;
  z-index: 2;
}

.project-item-style1 .project-item-details {
  padding: 22px;
}

.project-item-style1 .project-item-link-icon a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-forest);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.project-item-style1 .project-item-thumb img,
.service-style2 .service-item-thumb img,
.news-thumb img {
  transition: transform 0.45s ease;
}

.project-item-style1:hover .project-item-thumb img,
.service-style2:hover .service-item-thumb img,
.news-wrapper:hover .news-thumb img {
  transform: scale(1.06);
}

.project-item-style1 .project-item-title a,
.service-style2 .service-title a {
  color: #fff;
  font-size: 1.15rem;
}

.service-style2 .service-item-content {
  padding: 28px 22px 24px;
}

.service-style2 .service-item-icon,
.service-style2 .service-item-inner-icon {
  display: none;
}

.news-wrapper .news-description {
  padding: 28px 24px 24px;
  background: #fff;
}

.news-wrapper .the-title a,
.news-wrapper .the-content,
.news-wrapper .entry-date {
  color: var(--brand-forest);
}

.testimonial-item {
  padding: 32px 28px;
}

.testimonial-item .comments {
  color: #5f6b66;
  line-height: 1.8;
}

.testimonial-item .client-name {
  color: var(--brand-forest);
}

.about-image-box-style4 {
  border: 1px solid var(--brand-border);
  background: #fff;
  padding: 14px;
  border-radius: 32px;
}

.call-to-action-inner,
.sidebar-widget-need-help {
  background: linear-gradient(135deg, #182b22 0%, #264237 100%);
}

.call-to-action-inner {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  box-shadow: 0 28px 60px rgba(17, 27, 22, 0.16);
}

.call-to-action-sub-title,
.call-to-action-title,
.need-help-title,
.need-help-contact p,
.need-help-contact a {
  color: #fff !important;
}

.page-title-section {
  margin: 18px;
  padding: 132px 0 92px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 24, 20, 0.8) 0%, rgba(15, 24, 20, 0.48) 100%),
    radial-gradient(circle at right, rgba(var(--primary-color-rgb), 0.34), transparent 35%),
    url("../images/bg/5.jpg") center/cover no-repeat;
}

.page-title-section .page-title {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.page-title-section .breadcrumbs-link li,
.page-title-section .breadcrumbs-link li a {
  color: rgba(255, 255, 255, 0.8);
}

.page-title-section .breadcrumb-area {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-title-section .breadcrumbs-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
}

.contact-form,
.service-detail-text,
.news-description,
.entry-content,
.widget.sidebar-widget,
.single-post {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  margin: 18px;
  border-radius: 34px 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 16, 13, 0.22) 0%, rgba(9, 16, 13, 0.72) 100%);
}

.footer .footer-main-area,
.footer .mobile-nav-wrapper {
  position: relative;
  z-index: 1;
}

.footer-quick-links {
  display: grid;
  gap: 10px;
}

.footer-quick-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-quick-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.social-list a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.social-list a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.mobile-nav-content,
.search-popup-content {
  border-radius: 26px;
}

.telefon a,
.whatsapp a,
.telegram a,
.instagram a {
  box-shadow: 0 18px 34px rgba(15, 21, 18, 0.18) !important;
}

@media (max-width: 1199px) {
  .site-header .main-menu-wrapper,
  .site-header .topbar-wrapper {
    width: calc(100% - 24px);
  }

  .site-header .main-menu-wrapper {
    min-height: 82px;
    padding: 0 20px !important;
    gap: 18px;
  }

  .header-booking-cta {
    display: none;
  }

  .site-header .header-contact-info {
    display: none;
  }
}

@media (max-width: 991px) {
  .home-page .site-header {
    position: relative;
  }

  .home-page .site-header .main-menu,
  .home-page .site-header .header-topbar {
    background: rgba(17, 28, 23, 0.92);
  }

  .home-page .site-header .main-menu-wrapper {
    margin-top: 0;
    border-radius: 0 0 24px 24px;
    background: transparent;
    border: 0;
  }

  .site-header .main-menu-wrapper {
    min-height: auto;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  .home_banner_02 {
    padding: 0;
  }

  .home_banner_02 .home-carousel {
    border-radius: 0;
  }

  .home_banner_02 .slide-item,
  .home_banner_02 .content-column {
    min-height: 82vh;
  }

  .home_banner_02 .content-box {
    padding: 0;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-secondary-link,
  .animate-btn-style2,
  .animate-btn-style3,
  .animate-btn-style4 {
    width: 100%;
    justify-content: center;
  }

  .brand-overview-section {
    margin-top: 0;
  }

  .brand-overview-panel {
    padding: 24px;
  }

  .brand-overview-grid,
  .brand-feature-list {
    grid-template-columns: 1fr;
  }

  .feature-work-section::before,
  .service-section-style2::before,
  .testimonial-style2-section::before,
  .contact-section::before,
  .blog-single-news::before,
  .service-details-page::before {
    inset: 8px;
    border-radius: 24px;
  }

  .page-title-section,
  .footer {
    margin: 8px;
    border-radius: 24px;
  }

  .feature-work-section,
  .service-section-style2,
  .testimonial-style2-section,
  .blog-single-news {
    margin: 8px;
  }

  .telefon,
  .whatsapp,
  .telegram,
  .instagram {
    right: 10px;
  }
}
