/* ═══════════════════════════════════════════════════════════
   DB-BAUPARTNER – Premium site theme (white + red)
   ═══════════════════════════════════════════════════════════ */

:root {
  --hp-red: #cf2c17;
  --hp-red-dark: #a82312;
  --hp-red-glow: rgba(207, 44, 23, 0.35);
  --hp-red-soft: rgba(207, 44, 23, 0.1);
  --hp-white: #ffffff;
  --hp-off: #f8f9fc;
  --hp-text: #1c1c28;
  --hp-muted: #5c5c6f;
  --hp-radius: 20px;
  --hp-shadow: 0 20px 60px rgba(28, 28, 40, 0.08);
  --hp-shadow-hover: 0 28px 70px rgba(207, 44, 23, 0.15);
}

body.premium-site {
  background: var(--hp-off);
  color: var(--hp-text);
}

/* ── Floating decor (shared) ── */
.hp-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.hp-deco--red {
  background: radial-gradient(circle, rgba(207, 44, 23, 0.18) 0%, transparent 70%);
  animation: hp-float 7s ease-in-out infinite;
}

.hp-deco--white {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.5);
  animation: hp-float 9s ease-in-out infinite reverse;
}

.hp-deco--ring {
  border: 2px solid rgba(207, 44, 23, 0.2);
  background: transparent;
  animation: hp-spin-slow 20s linear infinite;
}

@keyframes hp-float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-18px) translateX(8px); }
}

@keyframes hp-spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes hp-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── Header entrance animation ── */
.header-premium.hp-header-animate .header-top,
.header-premium.hp-header-animate .header-logo,
.header-premium.hp-header-animate .header-button > *,
.header-premium.hp-header-animate .th-menu-toggle {
  opacity: 0;
  transform: translateY(-22px);
}

.header-premium.hp-header-animate .main-menu > ul > li {
  opacity: 0;
  transform: translateY(-18px);
}

.header-premium.hp-header-ready .header-top,
.header-premium.hp-header-ready .header-logo,
.header-premium.hp-header-ready .header-button > *,
.header-premium.hp-header-ready .th-menu-toggle,
.header-premium.hp-header-ready .main-menu > ul > li {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-premium.hp-header-ready .header-top {
  transition-delay: 0.05s;
}

.header-premium.hp-header-ready .header-logo {
  transition-delay: 0.15s;
}

.header-premium.hp-header-ready .main-menu > ul > li:nth-child(1) {
  transition-delay: 0.22s;
}
.header-premium.hp-header-ready .main-menu > ul > li:nth-child(2) {
  transition-delay: 0.3s;
}
.header-premium.hp-header-ready .main-menu > ul > li:nth-child(3) {
  transition-delay: 0.38s;
}
.header-premium.hp-header-ready .main-menu > ul > li:nth-child(4) {
  transition-delay: 0.46s;
}
.header-premium.hp-header-ready .main-menu > ul > li:nth-child(5) {
  transition-delay: 0.54s;
}

.header-premium.hp-header-ready .header-button > *:nth-child(1) {
  transition-delay: 0.5s;
}
.header-premium.hp-header-ready .header-button > *:nth-child(2) {
  transition-delay: 0.58s;
}
.header-premium.hp-header-ready .header-button > *:nth-child(3) {
  transition-delay: 0.66s;
}

/* ── Premium header ── */
.header-premium .header-top {
  background: linear-gradient(135deg, var(--hp-red) 0%, var(--hp-red-dark) 100%);
  border: none;
  padding: 10px 0;
}

.header-premium .header-top::before {
  display: none !important;
}

.header-premium .header-notice {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.header-premium .header-notice i {
  color: #fff;
  opacity: 0.85;
}

.header-premium .header-links li,
.header-premium .header-links a {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 13px;
}

.header-premium .header-links li::after {
  background: rgba(255, 255, 255, 0.4) !important;
}

.header-premium .header-links a:hover {
  color: #fff !important;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.header-premium .sticky-wrapper {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(28, 28, 40, 0.06);
  border-bottom: 2px solid var(--hp-red-soft);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}

.header-premium .sticky-wrapper.sticky {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 40px rgba(207, 44, 23, 0.1);
}

.header-premium .main-menu::before,
.header-premium .main-menu::after {
  display: none !important;
}

.header-premium .main-menu > ul > li > a {
  font-weight: 600;
  color: var(--hp-text) !important;
  position: relative;
  transition: color 0.25s ease;
}

.header-premium .main-menu > ul > li > a:hover,
.header-premium .main-menu > ul > li.active > a {
  color: var(--hp-red) !important;
}

.header-premium .main-menu > ul > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hp-red), #ff6b5a);
  border-radius: 3px;
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-premium .main-menu > ul > li > a:hover::after,
.header-premium .main-menu > ul > li.active > a::after {
  width: calc(100% - 10px);
}

.header-premium .main-menu ul.sub-menu {
  border-radius: 14px;
  border: 1px solid var(--hp-red-soft);
  border-top: 3px solid var(--hp-red);
  box-shadow: var(--hp-shadow);
  overflow: hidden;
  padding: 8px 0;
}

.header-premium .header-button .th-btn {
  border-radius: 50px;
  padding-left: 28px;
  padding-right: 28px;
  box-shadow: 0 8px 28px var(--hp-red-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-premium .header-button .th-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px var(--hp-red-glow);
}

.header-premium .header-button .icon-btn {
  border-radius: 50%;
  border: 2px solid var(--hp-red-soft);
  transition: all 0.3s ease;
}

.header-premium .header-button .icon-btn:hover {
  background: var(--hp-red);
  border-color: var(--hp-red);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Hero (photo stays, shorter height) ── */
.premium-site .home-hero {
  position: relative;
  overflow: hidden;
  max-height: 520px;
}

.premium-site .home-hero .hero-inner,
.premium-site .home-hero .swiper-slide {
  min-height: 420px !important;
  max-height: 520px !important;
  height: 480px !important;
}

.premium-site .home-hero .hero-style2 {
  padding: 70px 0 90px !important;
  max-width: 920px;
  text-align: left !important;
  padding-left: clamp(20px, 6vw, 90px) !important;
}

.premium-site .home-hero .th-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(207, 44, 23, 0.25) 45%,
    rgba(28, 28, 40, 0.55) 100%
  );
  z-index: 1;
}

.premium-site .home-hero .hero-inner {
  position: relative;
  z-index: 2;
}

/* Red subtitle – transparent background */
.premium-site .home-hero .hero-style2 .sub-title.hp-hero-sub,
.premium-site .home-hero .hp-hero-sub {
  display: inline-block !important;
  padding: 0 !important;
  margin-bottom: 10px;
  background: transparent !important;
  color: #cf2c17 !important;
  font-weight: 800 !important;
  font-size: clamp(1.15rem, 2.6vw, 1.65rem) !important;
  letter-spacing: 0.04em;
  text-transform: none !important;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.35);
  text-shadow:
    0 3px 14px rgba(0, 0, 0, 0.75),
    0 0 30px rgba(207, 44, 23, 0.45);
  box-shadow: none !important;
  border-radius: 0;
  opacity: 1 !important;
  animation: hp-sub-slide-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both,
    hp-hero-sub-glow 3s ease-in-out 1.2s infinite;
}

@keyframes hp-hero-sub-glow {
  0%, 100% {
    text-shadow:
      0 3px 14px rgba(0, 0, 0, 0.75),
      0 0 30px rgba(207, 44, 23, 0.45);
  }
  50% {
    text-shadow:
      0 3px 14px rgba(0, 0, 0, 0.75),
      0 0 55px rgba(207, 44, 23, 0.85);
  }
}

@keyframes hp-sub-slide-in {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.premium-site .home-hero .hp-hero-sub::after {
  display: none !important;
}

.premium-site .home-hero .hp-hero-title {
  color: #fff !important;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.5) !important;
  font-weight: 700;
  line-height: 1.1 !important;
  margin-top: 12px;
  font-size: clamp(2.4rem, 6vw, 5rem) !important;
  letter-spacing: -0.02em;
}

.premium-site .home-hero .hp-hero-text {
  color: rgba(255, 255, 255, 0.96) !important;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.3rem) !important;
  line-height: 1.75 !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  max-width: 560px;
  margin-top: 20px;
}

.premium-site .home-hero .hp-line {
  display: block;
}

.premium-site .home-hero .hp-reveal-line {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  animation: hp-line-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.premium-site .home-hero .hp-hero-title .hp-reveal-line:nth-child(1) {
  animation-delay: 0.28s;
}
.premium-site .home-hero .hp-hero-title .hp-reveal-line:nth-child(2) {
  animation-delay: 0.42s;
}
.premium-site .home-hero .hp-hero-text .hp-reveal-line:nth-child(1) {
  animation-delay: 0.56s;
}
.premium-site .home-hero .hp-hero-text .hp-reveal-line:nth-child(2) {
  animation-delay: 0.7s;
}
.premium-site .home-hero .hp-hero-text .hp-reveal-line:nth-child(3) {
  animation-delay: 0.84s;
}

.premium-site .home-hero .hp-reveal-line.hp-line-visible {
  animation: hp-line-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.premium-site .home-hero .hp-hero-title .hp-reveal-line {
  text-shadow:
    0 4px 28px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 255, 255, 0.08);
}

.premium-site .home-hero .hp-hero-text .hp-reveal-line {
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(207, 44, 23, 0.15);
}

@keyframes hp-line-in {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.premium-site .home-hero .hp-hero-float {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}


.premium-site .home-hero .scroll-down .scroll-wrap {
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── Section titles (friendly highlight) ── */
.premium-site .hp-section {
  position: relative;
  overflow: hidden;
}

.premium-site .hp-section .title-area .sec-title {
  position: relative;
  display: inline-block;
}

.premium-site .hp-section .title-area .sub-title.style1 {
  background: var(--hp-red-soft);
  color: var(--hp-red);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(207, 44, 23, 0.15);
}

.premium-site .hp-section .title-area .sub-title.style1::after {
  display: none !important;
}

/* ── Das zeichnet uns aus ── */
.home-feature {
  background: var(--hp-white);
  padding: 100px 0 90px;
}

.home-feature .hp-deco-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
}

.home-feature .hp-deco-2 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  left: -40px;
  animation-delay: -3s;
}

.home-feature .feature-item {
  background: var(--hp-white);
  border: 1px solid rgba(207, 44, 23, 0.08);
  border-radius: var(--hp-radius);
  padding: 36px 30px;
  height: 100%;
  position: relative;
  z-index: 1;
  box-shadow: var(--hp-shadow);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  overflow: hidden;
}

.home-feature .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hp-red), #ff8a7a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.home-feature .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--hp-shadow-hover);
}

.home-feature .feature-item:hover::before {
  transform: scaleX(1);
}

.home-feature .feature-item_icon {
  width: 64px;
  height: 64px;
  background: var(--hp-red-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.4s ease, background 0.3s ease;
}

.home-feature .feature-item:hover .feature-item_icon {
  transform: scale(1.08) rotate(-3deg);
  background: rgba(207, 44, 23, 0.18);
}

.home-feature .feature-item_icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.home-feature .feature-item_shape,
.home-feature .feature-item_shape2,
.home-feature > .shape-mockup {
  display: none !important;
}

.home-feature .box-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.home-feature .feature-item_text {
  color: var(--hp-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Leistungen ── */
.home-services {
  background: var(--hp-off) !important;
  padding: 100px 0;
  position: relative;
}

.home-services::before {
  display: none !important;
}

.home-services .hp-deco-3 {
  width: 400px;
  height: 400px;
  top: 20%;
  right: -120px;
}

.home-services .th-accordion_images {
  border-radius: var(--hp-radius);
  overflow: hidden;
  box-shadow: var(--hp-shadow);
}

.home-services .th-accordion_images img {
  border-radius: var(--hp-radius);
}

.home-services .accordion-item {
  background: var(--hp-white) !important;
  border: 1px solid rgba(207, 44, 23, 0.08) !important;
  border-radius: 16px !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28, 28, 40, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.home-services .accordion-item:has(.accordion-button:not(.collapsed)) {
  box-shadow: var(--hp-shadow-hover);
  border-color: rgba(207, 44, 23, 0.2) !important;
}

.home-services .accordion-button {
  background: var(--hp-white) !important;
  border-radius: 16px !important;
  padding: 22px 24px;
}

.home-services .accordion-button:not(.collapsed) {
  color: var(--hp-red);
}

.home-services .accordion-item_number {
  color: var(--hp-red) !important;
  font-weight: 800;
  font-size: 1.1rem;
}

.home-services .accordion-body {
  padding: 0 24px 22px;
}

.home-services .faq-text {
  color: var(--hp-muted);
  line-height: 1.75;
}

/* ── CTA band ── */
.home-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--hp-red) 0%, var(--hp-red-dark) 50%, #8b1a0d 100%) !important;
  padding: 80px 0;
}

.home-cta::before,
.home-cta::after {
  display: none !important;
}

.home-cta .hp-deco-4 {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 65%);
}

.home-cta .hp-deco-5 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: 5%;
  border-color: rgba(255, 255, 255, 0.25);
}

.home-cta .sec-title {
  color: #fff !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.home-cta .th-btn.style3 {
  background: #fff !important;
  color: var(--hp-red) !important;
  border-radius: 50px;
  padding: 18px 36px;
  font-weight: 700;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-cta .th-btn.style3:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  color: var(--hp-red-dark) !important;
}

/* ── Projects ── */
.home-projects {
  background: var(--hp-white) !important;
  padding: 100px 0 110px;
  position: relative;
}

.home-projects::before {
  display: none !important;
}

.home-projects .hp-deco-6 {
  width: 250px;
  height: 250px;
  top: 5%;
  left: 3%;
}

.home-projects .title-area .sub-title.style1 {
  background: var(--hp-red-soft);
  color: var(--hp-red);
}

.home-projects .sec-title {
  color: var(--hp-text) !important;
}

.home-projects .th-btn.style1 {
  border-radius: 50px;
  box-shadow: 0 8px 28px var(--hp-red-glow);
}

.home-projects .project-box {
  border-radius: var(--hp-radius);
  overflow: hidden;
  box-shadow: var(--hp-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-projects .project-box:hover {
  transform: translateY(-12px);
  box-shadow: var(--hp-shadow-hover);
}

.home-projects .project-box-img {
  border-radius: var(--hp-radius);
  overflow: hidden;
  position: relative;
}

.home-projects .project-box-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(207, 44, 23, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.home-projects .project-box:hover .project-box-img::after {
  opacity: 1;
}

.home-projects .project-box-img img {
  transition: transform 0.5s ease;
}

.home-projects .project-box:hover .project-box-img img {
  transform: scale(1.06);
}

.home-projects .slider-pagination .swiper-pagination-bullet {
  background: var(--hp-red-soft);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.home-projects .slider-pagination .swiper-pagination-bullet-active {
  background: var(--hp-red);
  width: 28px;
  border-radius: 5px;
}

/* ── Footer ── */
.premium-site .footer-wrapper.home-footer-premium {
  background: linear-gradient(180deg, #1a1a24 0%, #12121a 100%) !important;
  position: relative;
  overflow: hidden;
}

.premium-site .footer-wrapper.home-footer-premium::before {
  display: none !important;
}

.premium-site .footer-wrapper.home-footer-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--hp-red), #ff6b5a, var(--hp-red), transparent);
  z-index: 2;
}

.premium-site .home-footer-premium .hp-footer-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 44, 23, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
  animation: hp-float 10s ease-in-out infinite;
}

.premium-site .home-footer-premium .widget_title {
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.premium-site .home-footer-premium .widget_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--hp-red);
  border-radius: 2px;
}

.premium-site .home-footer-premium .about-text,
.premium-site .home-footer-premium .footer-info {
  color: rgba(255, 255, 255, 0.75);
}

.premium-site .home-footer-premium .footer-info-title {
  color: #fff;
}

/* Footer icons: match theme (white icon on red square) */
.premium-site .footer-wrapper.home-footer-premium .th-widget-about .footer-info i {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  position: absolute;
  left: 0;
  font-size: 12px;
}

.premium-site .footer-wrapper.home-footer-premium .th-widget-about .footer-info {
  padding-left: 35px;
  position: relative;
}

/* ── Inner pages (global premium) ── */
.premium-site .space,
.premium-site .overflow-hidden.space {
  position: relative;
}

.premium-site .title-area .sub-title.style1 {
  background: var(--hp-red-soft);
  color: var(--hp-red);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(207, 44, 23, 0.12);
  display: inline-block;
}

.premium-site .title-area .sub-title.style1::after {
  display: none !important;
}

.premium-site .sec-title {
  color: var(--hp-text);
}

.premium-site .sec-text {
  color: var(--hp-muted);
  line-height: 1.75;
}

.premium-site .img-box3,
.premium-site .img-box1,
.premium-site .img-box2 {
  border-radius: var(--hp-radius);
  overflow: hidden;
  box-shadow: var(--hp-shadow);
}

.premium-site .img-box3 img,
.premium-site .img-box1 img,
.premium-site .img-box2 img {
  border-radius: var(--hp-radius);
}

.premium-site .th-btn {
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-site .th-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--hp-red-glow);
}

.premium-site .breadcumb-wrapper {
  background: linear-gradient(135deg, var(--hp-red) 0%, var(--hp-red-dark) 100%) !important;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.premium-site .breadcumb-wrapper::before {
  display: none !important;
}

.premium-site .breadcumb-title {
  color: #fff !important;
}

.premium-site .breadcumb-menu a,
.premium-site .breadcumb-menu li {
  color: rgba(255, 255, 255, 0.85) !important;
}

.premium-site .service-card,
.premium-site .project-card,
.premium-site .team-card,
.premium-site .blog-card {
  border-radius: var(--hp-radius);
  box-shadow: var(--hp-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.premium-site .service-card:hover,
.premium-site .project-card:hover,
.premium-site .team-card:hover,
.premium-site .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-hover);
}

.premium-site .contact-form .form-control,
.premium-site .contact-form textarea,
.premium-site input.form-control,
.premium-site textarea.form-control {
  border-radius: 12px;
  border: 1px solid rgba(207, 44, 23, 0.12);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.premium-site .contact-form .form-control:focus,
.premium-site input.form-control:focus,
.premium-site textarea.form-control:focus {
  border-color: var(--hp-red);
  box-shadow: 0 0 0 3px var(--hp-red-soft);
}

.premium-site .sidemenu-wrapper .th-widget-about .footer-info i {
  position: relative;
  left: auto;
  top: auto;
  margin-right: 10px;
  width: 32px !important;
  height: 32px !important;
  font-size: 13px !important;
}

.premium-site .home-footer-premium .menu a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.premium-site .home-footer-premium .menu a:hover {
  color: var(--hp-red);
  padding-left: 6px;
}

.premium-site .home-footer-premium .copyright-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.premium-site .home-footer-premium .copyright-text {
  color: rgba(255, 255, 255, 0.55);
}

.premium-site .home-footer-premium .copyright-text a {
  color: var(--hp-red);
}

/* Scroll top accent */
.premium-site .scroll-top {
  background: var(--hp-red);
  box-shadow: 0 8px 24px var(--hp-red-glow);
}

/* Responsive */
@media (max-width: 991px) {
  .premium-site .home-hero .hero-inner,
  .premium-site .home-hero .swiper-slide {
    height: 400px !important;
    min-height: 360px !important;
    max-height: 400px !important;
  }

  .premium-site .home-hero .hero-style2 {
    padding: 50px 0 70px !important;
    padding-left: 20px !important;
  }

  .home-feature,
  .home-services,
  .home-projects {
    padding: 70px 0;
  }

  .home-services .th-accordion_images {
    margin-bottom: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hp-deco,
  .premium-site .home-hero .sub-title.style1 {
    animation: none !important;
  }
}
