/* ============================================================
   MINIMALIST OVERRIDE — High Focus Agency
   ============================================================ */

/* ---------- GLOBAL TYPOGRAPHY ---------- */
body, .home-one {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.home-one h1, .home-one h2, .home-one h3,
.home-one h4, .home-one h5, .home-one h6 {
  font-family: 'Inter', 'Roboto', -apple-system, sans-serif !important;
  letter-spacing: -0.02em;
}

p { line-height: 1.8; }

/* ---------- HIDE DECORATIVE SHAPES ---------- */
.hero-three-shapes,
.work-process-shape,
.wave-shapes,
.about-image-one .image-left,
.statistics-three-image .image-right,
.hero-content-three::before,
.bg-squire-shape::before {
  display: none !important;
}

/* ---------- HEADER ---------- */
.main-header .header-upper {
  padding: 6px 0;
}

.main-header.fixed-header .header-upper {
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06) !important;
}

.main-menu .navigation > li > a {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  text-transform: none !important;
  letter-spacing: 0;
}

/* ---------- BUTTONS ---------- */
.theme-btn, .home-one .theme-btn {
  border-radius: 6px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 13px 30px !important;
  text-transform: none !important;
  letter-spacing: 0.01em;
}

.theme-btn::after, .home-one .theme-btn::after {
  border-radius: 6px !important;
}

/* ---------- SUBTITLES ---------- */
.sub-title, .section-title .sub-title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   HERO MODERN — centered + marquee
   ============================================================ */
.hero-modern {
  padding: 170px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  overflow: hidden;
}

.hero-modern-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.hero-modern-center h1 {
  font-size: clamp(34px, 5vw, 58px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: #293043;
}

.hero-modern-center p {
  font-size: 17px;
  line-height: 1.7;
  color: #696e7b;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-modern-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #293043;
  padding: 13px 30px;
  border-radius: 6px;
  border: none;
  background: none;
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.hero-btn-secondary i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.hero-btn-secondary:hover {
  color: #f8211f;
}

.hero-btn-secondary:hover i {
  transform: translateX(4px);
}

/* Marquee */
.hero-marquee-wrap {
  padding-bottom: 80px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.hero-marquee {
  overflow: hidden;
  width: 100%;
}

.hero-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}

.hero-marquee-track:hover {
  animation-play-state: paused;
}

.hero-marquee-item {
  display: block;
  flex-shrink: 0;
  width: 380px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-marquee-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}

.hero-marquee-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 991px) {
  .hero-modern { padding: 140px 0 0; }
  .hero-modern-center { margin-bottom: 50px; }
  .hero-marquee-item { width: 300px; }
  .hero-marquee-wrap { padding-bottom: 60px; }
}

@media (max-width: 575px) {
  .hero-modern { padding: 120px 0 0; }
  .hero-modern-center h1 { font-size: 28px !important; }
  .hero-modern-btns { flex-direction: column; align-items: center; }
  .hero-marquee-item { width: 260px; }
  .hero-marquee-track { gap: 14px; }
  .hero-marquee-wrap { padding-bottom: 40px; }
}

/* ============================================================
   FULLSCREEN MOBILE MENU
   ============================================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-overlay-inner {
  text-align: center;
  width: 100%;
  padding: 30px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.mobile-overlay.is-open .mobile-overlay-inner {
  transform: translateY(0);
}

/* Close button */
.mobile-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-overlay-close span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mobile-overlay-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-overlay-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Logo */
.mobile-overlay-logo {
  margin-bottom: 40px;
}

.mobile-overlay-logo img {
  height: 40px;
  width: auto;
}

/* Nav links */
.mobile-overlay-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.mobile-overlay-nav li {
  margin: 0;
}

.mobile-overlay-nav li a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 14px 0;
  transition: color 0.2s ease, transform 0.2s ease;
  letter-spacing: -0.01em;
}

.mobile-overlay-nav li a:hover {
  color: #f8211f;
  transform: translateX(5px);
}

/* Language switcher */
.mobile-overlay-lang {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.mobile-overlay-lang button {
  background: rgba(255,255,255,0.08);
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  opacity: 0.5;
}

.mobile-overlay-lang button.active {
  border-color: #f8211f;
  opacity: 1;
  background: rgba(248, 33, 31, 0.1);
}

/* CTA */
.mobile-overlay-cta .theme-btn {
  font-size: 15px !important;
}

/* ---------- SERVICES ---------- */
.feature-item-five {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 10px;
}

.feature-item-five:hover {
  border-color: #ddd;
  background-color: #fff !important;
  background-image: none !important;
  transform: translateY(-8px) !important;
}

.feature-item-five:hover i,
.feature-item-five:hover h5,
.feature-item-five:hover h5 a {
  color: inherit !important;
}

.feature-item-five h5 {
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* ---------- SECTIONS ---------- */
.bgc-lighter {
  background-color: #fafbfc !important;
}

.support-features-area {
  background-image: none !important;
}

/* ---------- TECH CARDS ---------- */
.service-item.style-two {
  border: 1px solid #eef0f3 !important;
  border-radius: 10px !important;
}

.service-item.style-two:hover {
  background: #fff !important;
  border-color: #f8211f !important;
  box-shadow: none !important;
  transform: translateY(-3px) !important;
}

.service-item.style-two:hover .icon,
.service-item.style-two:hover a,
.service-item.style-two:hover p {
  color: inherit !important;
}

.service-item.style-two:hover:after {
  opacity: 0 !important;
}

/* ---------- IMAGES ---------- */
.about-image-one img,
.statistics-three-image img,
.project-item.style-two .project-iamge img {
  border-radius: 8px;
}

.project-item.style-two .project-iamge {
  border-radius: 8px;
  overflow: hidden;
}

/* ---------- PROJECTS ---------- */
.project-filter.filter-btns-one li {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  text-transform: none !important;
  border-radius: 6px !important;
}

/* ---------- FEATURE CARDS (detail pages) ---------- */
.feature-item-three {
  border: 1px solid #eef0f3 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

.feature-item-three:hover {
  border-color: #ccc !important;
}

/* ---------- PROCESS ---------- */
.work-process-item h4 {
  font-size: 17px !important;
}

.work-process-item .icon .number {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800;
}

/* ---------- FOOTER ---------- */
.main-footer .footer-cta .section-title p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.75;
}

.social-style-two a {
  box-shadow: none !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  background: rgba(255,255,255,0.05) !important;
}

.social-style-two a:hover {
  background: rgba(255,255,255,0.12) !important;
}

.copyright-area p {
  font-size: 13px;
  opacity: 0.6;
}

/* ---------- FORMS ---------- */
.contact-form input,
.contact-form textarea {
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
}

/* ---------- MISC ---------- */
.section-title h2 {
  font-size: clamp(24px, 3.2vw, 40px) !important;
  line-height: 1.2 !important;
}

hr { opacity: 0.15; }

.slick-arrow { border-radius: 8px !important; }

::selection {
  background: rgba(248, 33, 31, 0.12);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f5f5f5; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #aaa; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .theme-btn, .home-one .theme-btn { padding: 11px 22px !important; }
}

@media (max-width: 575px) {
  .section-title h2 { font-size: 22px !important; }
}
