/* HORVINT – Why Choose Us Page (matches horvintgroup.com/why-choose-us) */

:root {
  --hv-blue: #e35712;
  --hv-orange:#e99f17;
  --hv-orange-dark: #e35712;
  --hv-dark: #0a0f2c;
  --hv-dark-2: #0c1234;
  --hv-text: #141417;
  --hv-muted: #676767;
  --hv-light: #f7f7f7;
  --hv-download-bg: #f0ece6;
  --hv-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--hv-text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Jost', sans-serif;
}

a { text-decoration: none; }

/* ── Header ── */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
}

.main-header .header-lower {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-header .outer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.main-header .outer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.main-header .logo img {
  max-width: 160px;
  height: auto;
}

.main-header .navbar-nav .nav-link {
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  padding: 28px 14px !important;
  font-family: 'Poppins', sans-serif;
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link.active,
.main-header .navbar-nav .dropdown-toggle.show {
  color: var(--hv-orange) !important;
}

.main-header .dropdown-menu {
  background: #fff;
  border: none;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 200px;
}

.main-header .dropdown-item {
  font-size: 14px;
  padding: 8px 20px;
  color: var(--hv-text);
}

.main-header .dropdown-item:hover,
.main-header .dropdown-item.active {
  background: #eff1ff;
  color: var(--hv-blue);
}

.main-header .nav-sidebar-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.35rem;
  padding: 8px;
  cursor: pointer;
  transition: var(--hv-transition);
}

.main-header .nav-sidebar-btn:hover { color: var(--hv-orange); }

.main-header .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.main-header .navbar-toggler-icon {
  filter: invert(1);
}

.main-header.scrolled {
  position: fixed;
  background: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.4s ease;
}

.main-header.scrolled .header-lower { border-bottom-color: #eee; }
.main-header.scrolled .navbar-nav .nav-link { color: var(--hv-text) !important; }
.main-header.scrolled .navbar-nav .nav-link:hover,
.main-header.scrolled .navbar-nav .nav-link.active { color: var(--hv-orange) !important; }
.main-header.scrolled .nav-sidebar-btn { color: var(--hv-text); }
.main-header.scrolled .navbar-toggler-icon { filter: none; }
.main-header.scrolled .logo-dark { display: block !important; }
.main-header.scrolled .logo-light { display: none !important; }

.logo-dark { display: none; }

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* ── Page Banner ── */
.page-banner {
  position: relative;
  background-image: url('images/why-banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 250px 0 135px;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.7;
}

.page-banner .banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: #fff;
  font-size: 55px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.breadcrumb-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
}

.breadcrumb-nav li {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.breadcrumb-nav li a {
  color: #a9a9aa;
}

.breadcrumb-nav li a:hover,
.breadcrumb-nav li.active {
  color: #fff;
}

.breadcrumb-nav li:not(:last-child)::after {
  content: '\203A';
  position: absolute;
  right: -18px;
  top: 0;
  color: #a9a9aa;
}

/* ── Section utilities ── */
.sec-pad { padding: 100px 0; }

.sub-title {
  display: inline-block;
  background: #eff1ff;
  color: var(--hv-blue);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
}

.sec-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--hv-text);
  margin-bottom: 0;
}

.sec-text {
  color: var(--hv-muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.section-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0;
}

/* ── Why Us intro ── */
.why-intro .sec-text { max-width: 100%; }

/* ── Content blocks ── */
.content-block {
  position: relative;
}

.content-block .block-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.content-block .block-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.content-block .block-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
  transform: skewX(-25deg);
  z-index: 1;
}

.content-block .block-image:hover::before {
  animation: shine 1s;
}

.content-block .block-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 10px;
}

.content-block .block-text {
  color: var(--hv-muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.content-block-right .block-image { margin-bottom: 0; margin-top: 0; }
.content-block-right .block-text-wrap { margin-bottom: 30px; }

.content-block .shape-dot {
  position: absolute;
  top: 240px;
  right: -30px;
  width: 95px;
  height: 95px;
  background-repeat: no-repeat;
  background-size: contain;
  animation: floatBob 4s ease-in-out infinite;
  pointer-events: none;
}

.content-block-right .shape-wrap { position: relative; }

.content-block-right .shape-circle {
  position: absolute;
  right: -105px;
  top: 40%;
  width: 250px;
  height: 250px;
  background: #f7f7f7;
  border-radius: 50%;
  animation: zoomFade 4s infinite linear;
  pointer-events: none;
}

.content-block-right .shape-dot-2 {
  position: absolute;
  bottom: 180px;
  right: -75px;
  width: 117px;
  height: 117px;
  background-repeat: no-repeat;
  background-size: contain;
  animation: floatBob 4s ease-in-out infinite;
  pointer-events: none;
}

.content-block-left { margin-right: 60px; }

@keyframes shine {
  100% { left: 125%; }
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes zoomFade {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

/* ── Quality commitment cards ── */
.quality-section { background: var(--hv-light); }

.commitment-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: var(--hv-transition);
  border: 1px solid #eee;
}

.commitment-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.commitment-card .icon-wrap {
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 20px;
  margin-bottom: 15px;
}

.commitment-card .icon-wrap img {
  max-height: 55px;
  width: auto;
}

.commitment-card h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* ── Download catalogue ── */
.download-section {
  background: var(--hv-download-bg);
  position: relative;
  overflow: hidden;
}

.download-section .pattern-2 {
  position: absolute;
  left: 0;
  bottom: 80px;
  width: 372px;
  height: 329px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  pointer-events: none;
}

.download-section .pattern-3 {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 300px;
  height: 400px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  pointer-events: none;
}

.download-section .catalogue-img img {
  max-width: 100%;
  height: auto;
}

/* ── Buttons ── */
.btn-hv {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hv-blue);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--hv-transition);
}

.btn-hv::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hv-orange);
  border-radius: 30px;
  transform: translateX(-101%) rotate(3deg);
  transform-origin: top left;
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn-hv:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-hv:hover::before { transform: translateX(0) rotate(0); }

/* ── Contact form ── */
.contact-section .form-inner input,
.contact-section .form-inner select,
.contact-section .form-inner textarea {
  width: 100%;
  background: #ededed;
  border: 1px solid #ededed;
  border-radius: 5px;
  padding: 12px 18px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: var(--hv-text);
  outline: none;
  transition: border-color 0.3s;
}

.contact-section .form-inner input:focus,
.contact-section .form-inner select:focus,
.contact-section .form-inner textarea:focus {
  border-color: var(--hv-orange);
}

.contact-section .form-inner textarea { height: 130px; resize: vertical; }

.contact-section .form-inner label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.contact-section .contact-image img {
  max-width: 100%;
  border-radius: 10px;
}

.contact-section .contact-image-wrap {
  position: relative;
}

.contact-section .contact-image-wrap::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #c8a2ff, #ffffff, #ffd1a3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.6;
}

.contact-section .contact-image-wrap img {
  position: relative;
  z-index: 1;
}

/* ── Newsletter ── */
.newsletter-section {
  background: var(--hv-orange-dark);
  padding: 30px 0 35px;
}

.newsletter-section h2 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.newsletter-form {
  position: relative;
  padding-right: 220px;
}

.newsletter-form input {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 5px;
  padding: 10px 30px;
  font-size: 15px;
  outline: none;
}

.newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  width: 204px;
  background: #262c3b;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--hv-transition);
}

.newsletter-form button:hover {
  background: #fff;
  color: var(--hv-orange-dark);
}

/* ── Footer ── */
.site-footer {
  background: var(--hv-dark);
  position: relative;
  overflow: hidden;
}

.site-footer .footer-top {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .footer-logo img { max-width: 160px; }

.site-footer .footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.site-footer .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--hv-transition);
}

.site-footer .footer-social a:hover {
  background: var(--hv-orange);
}

.site-footer .footer-widgets {
  padding: 60px 0 40px;
}

.site-footer .widget-title h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 24px;
}

.site-footer .widget-title h4::first-letter { color: var(--hv-orange); }

.site-footer .widget-text {
  color: #9aa3b5;
  font-size: 14px;
  line-height: 1.75;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li { margin-bottom: 10px; }

.site-footer .footer-links a {
  color: #9aa3b5;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s;
}

.site-footer .footer-links a i { font-size: 10px; color: var(--hv-orange); }
.site-footer .footer-links a:hover { color: var(--hv-orange); }

.site-footer .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .info-list li {
  color: #9aa3b5;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
}

.site-footer .info-list li i {
  color: var(--hv-orange);
  margin-top: 4px;
  flex-shrink: 0;
}

.site-footer .info-list a { color: #9aa3b5; }
.site-footer .info-list a:hover { color: var(--hv-orange); }

.site-footer .footer-bottom {
  background: var(--hv-dark-2);
  padding: 20px 0;
}

.site-footer .footer-bottom p {
  margin: 0;
  color: #7a8499;
  font-size: 14px;
}

.site-footer .footer-bottom a {
  color: var(--hv-orange);
  font-weight: 700;
}

/* ── Sidebar offcanvas ── */
.sidebar-offcanvas {
  background: #111;
  color: #ccc;
  max-width: 380px;
}

.sidebar-offcanvas .offcanvas-header {
  border-bottom: 1px solid #222;
}

.sidebar-offcanvas .offcanvas-title img { max-width: 140px; }

.sidebar-offcanvas h4 {
  color: #fff;
  font-size: 18px;
  margin: 24px 0 12px;
}

.sidebar-offcanvas p,
.sidebar-offcanvas li {
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
}

.sidebar-offcanvas .info-list { list-style: none; padding: 0; }

.sidebar-offcanvas .info-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.sidebar-offcanvas .info-list i { color: var(--hv-orange); }

.sidebar-offcanvas .social-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
}

.sidebar-offcanvas .social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: var(--hv-transition);
}

.sidebar-offcanvas .social-links a:hover {
  background: var(--hv-orange);
  border-color: var(--hv-orange);
  color: #fff;
}

/* ── Back to top ── */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--hv-orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--hv-transition);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(255, 128, 64, 0.4);
}

#backToTop.visible {
  opacity: 1;
  pointer-events: all;
}

#backToTop:hover {
  background: var(--hv-blue);
  transform: translateY(-3px);
}

/* ── Scroll animations ── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .main-header .navbar-collapse {
    background: rgba(10, 15, 44, 0.97);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
  }

  .main-header.scrolled .navbar-collapse {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }

  .main-header.scrolled .navbar-collapse .nav-link {
    color: var(--hv-text) !important;
  }

  .page-banner { padding: 180px 0 100px; }
  .page-banner h1 { font-size: 42px; }
  .sec-title { font-size: 38px; }
  .content-block-left { margin-right: 0; }
  .content-block .shape-dot,
  .content-block-right .shape-circle,
  .content-block-right .shape-dot-2 { display: none; }
  .newsletter-form { padding-right: 0; }
  .newsletter-form button {
    position: static;
    width: 100%;
    margin-top: 12px;
  }
}

@media (max-width: 767px) {
  .sec-pad { padding: 70px 0; }
  .page-banner h1 { font-size: 34px; }
  .sec-title { font-size: 32px; }
  .content-block .block-title { font-size: 24px; }
  .commitment-card h3 { font-size: 17px; }
  .newsletter-section h2 { font-size: 24px; }
}
