/*
Theme Name: Instalator24 Usługi
Theme URI: https://instalator24.pl
Author: Instalator24
Author URI: https://instalator24.pl
Description: Motyw strony usługowej dla hurtowni instalator24.pl. Prezentacja usług montażowych: pompy ciepła, kotły gazowe, klimatyzacja, rekuperacja, fotowoltaika i więcej. Województwo łódzkie.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: instalator24
Tags: one-page, custom-logo, custom-colors, translation-ready
*/

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════════ */
:root {
  --navy: #081746;
  --navy-light: #0c2266;
  --navy-dark: #050f2e;
  --orange: #de982f;
  --orange-light: #f0b55a;
  --orange-dark: #c17f1a;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --gray-100: #eef0f6;
  --gray-200: #d8dce8;
  --gray-300: #b0b8cc;
  --gray-500: #6b7494;
  --gray-700: #3d4460;
  --text-body: #4a506a;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(8,23,70,0.06);
  --shadow-md: 0 8px 30px rgba(8,23,70,0.10);
  --shadow-lg: 0 20px 60px rgba(8,23,70,0.14);
  --shadow-orange: 0 8px 30px rgba(222,152,47,0.35);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary::after {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(222,152,47,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADINGS
   ═══════════════════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 36px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════ */
.top-bar {
  background: var(--navy-dark);
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-left {
  display: flex;
  gap: 28px;
  align-items: center;
}
.top-bar-left a,
.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
}
.top-bar-left a:hover { color: var(--orange); }
.top-bar-left i { color: var(--orange); font-size: 12px; }
.top-bar-right {
  display: flex;
  gap: 14px;
  align-items: center;
}
.top-bar-right a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}
.top-bar-right a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(8,23,70,0.08);
  animation: slideDown 0.6s ease;
  border-bottom: 1px solid var(--gray-100);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 16px;
  max-width: 1400px;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
}
.logo img,
.custom-logo {
  height: 46px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.1px;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--orange);
  background: rgba(222,152,47,0.06);
}
.nav-links a.active {
  color: var(--orange);
  background: rgba(222,152,47,0.08);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  white-space: nowrap;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  white-space: nowrap;
}
.header-phone .phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.header-cta .btn {
  padding: 11px 24px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 3px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 80%, rgba(222,152,47,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(222,152,47,0.05) 0%, transparent 70%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-deco-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(222,152,47,0.08);
  animation: rotateSlow 60s linear infinite;
}
.hero-deco-1::before {
  content: '';
  position: absolute;
  top: -30px; left: -30px;
  right: -30px; bottom: -30px;
  border-radius: 50%;
  border: 1px dashed rgba(222,152,47,0.06);
}
.hero-deco-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,152,47,0.06) 0%, transparent 70%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-content {
  animation: fadeInLeft 1s ease 0.2s both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 10px;
  background: rgba(222,152,47,0.12);
  border: 1px solid rgba(222,152,47,0.2);
  border-radius: 60px;
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-badge-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--white);
}
.hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.1;
}
.hero h1 span {
  color: var(--orange);
  position: relative;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(222,152,47,0.3);
  border-radius: 3px;
}
.hero-text {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat {
  text-align: left;
}
.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.4s both;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-image-main {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  position: relative;
}
.hero-image-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-card.card-1 {
  bottom: -20px;
  left: -30px;
  animation-delay: 0s;
}
.hero-float-card.card-2 {
  top: 30px;
  right: -30px;
  animation-delay: 1.5s;
}
.hero-float-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-float-icon.orange { background: rgba(222,152,47,0.12); color: var(--orange); }
.hero-float-icon.navy { background: rgba(8,23,70,0.08); color: var(--navy); }
.hero-float-text strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-float-text small {
  font-size: 12px;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════
   FEATURES BAR
   ═══════════════════════════════════════════════════════════ */
.features-bar {
  position: relative;
  z-index: 10;
  margin-top: -20px;
  margin-bottom: 40px;
}
.features-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.feature-item {
  padding: 36px 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-right: 1px solid var(--gray-100);
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--off-white); }
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(222,152,47,0.25);
}
.feature-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,152,47,0.04) 0%, transparent 70%);
}
.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-header .section-desc { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.service-card h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 10px;
  transition: var(--transition);
}
.service-card:hover h3 { color: var(--orange); }
.service-card p {
  font-size: 14px; color: var(--gray-500);
  line-height: 1.7; margin-bottom: 20px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px; font-size: 14px; font-weight: 700;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.service-card-link i { font-size: 11px; transition: var(--transition); }
.service-card:hover .service-card-link { color: var(--orange); }
.service-card:hover .service-card-link i { transform: translateX(5px); }

/* ═══════════════════════════════════════════════════════════
   ABOUT / WHY US
   ═══════════════════════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,23,70,0.03) 0%, transparent 70%);
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 500px; object-fit: cover; }
.about-experience {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 28px 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-orange);
}
.about-experience-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px; font-weight: 800; line-height: 1;
}
.about-experience-text { font-size: 14px; font-weight: 600; opacity: 0.9; }
.about-content { position: relative; z-index: 2; }
.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 32px 0;
}
.about-check {
  display: flex;
  align-items: center;
  gap: 12px; font-size: 15px;
  font-weight: 500; color: var(--gray-700);
}
.about-check i {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(222,152,47,0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px; flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════ */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-light));
  position: relative; overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.stats .container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px; text-align: center;
}
.stat-item { padding: 20px; }
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 52px; font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: 8px;
}
.stat-number span { color: var(--orange); }
.stat-label { font-size: 15px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════ */
.process {
  padding: 100px 0;
  background: var(--white);
}
.process-header { text-align: center; margin-bottom: 70px; }
.process-header .section-desc { margin: 0 auto; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 55px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gray-200) 0px, var(--gray-200) 10px, transparent 10px, transparent 20px);
}
.process-step { text-align: center; position: relative; z-index: 2; }
.process-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px; font-weight: 800; color: var(--navy);
  transition: var(--transition);
}
.process-step:hover .process-num {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
  transform: scale(1.1);
}
.process-step h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   REGION
   ═══════════════════════════════════════════════════════════ */
.region {
  padding: 100px 0;
  background: var(--off-white);
  overflow: hidden;
}
.region .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.region-map { position: relative; display: flex; justify-content: center; }
.region-map-inner {
  width: 100%; max-width: 440px;
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; overflow: hidden;
}
.region-map-inner::before {
  content: '';
  position: absolute; inset: 12px;
  border-radius: 50%;
  border: 2px dashed var(--gray-200);
}
.region-map-content { text-align: center; z-index: 2; }
.region-map-icon { font-size: 60px; color: var(--orange); margin-bottom: 16px; }
.region-map-content h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.region-map-content p { color: var(--gray-500); font-size: 15px; }
.region-pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(222,152,47,0.4);
}
.region-pin::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(222,152,47,0.2);
  animation: pulse 2s infinite;
}
.region-pin:nth-child(1) { top: 30%; left: 45%; }
.region-pin:nth-child(2) { top: 50%; left: 60%; }
.region-pin:nth-child(3) { top: 40%; left: 30%; }
.region-pin:nth-child(4) { top: 60%; left: 45%; }
.region-pin:nth-child(5) { top: 35%; left: 55%; }
.region-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 28px;
}
.region-list-item {
  display: flex;
  align-items: center;
  gap: 10px; padding: 12px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  color: var(--gray-700);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.region-list-item:hover { border-color: var(--orange); color: var(--orange); }
.region-list-item i { color: var(--orange); font-size: 10px; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-desc { margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}
.testimonial-quote {
  font-size: 40px; color: var(--orange);
  line-height: 1; margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 15px; color: var(--gray-700);
  line-height: 1.8; margin-bottom: 24px;
  font-style: italic;
}
.testimonial-stars {
  color: var(--orange); font-size: 14px;
  margin-bottom: 16px;
  display: flex; gap: 3px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 18px;
}
.testimonial-author strong {
  display: block; font-size: 15px;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.testimonial-author span { font-size: 13px; color: var(--gray-500); }

/* ═══════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════ */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,152,47,0.1) 0%, transparent 70%);
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,152,47,0.06) 0%, transparent 70%);
}
.cta .container { position: relative; z-index: 2; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: start;
}
.cta-content h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800; color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 17px; color: rgba(255,255,255,0.6);
  margin-bottom: 30px; line-height: 1.8;
}
.cta-features {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px; padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 60px;
  color: rgba(255,255,255,0.8);
  font-size: 14px; font-weight: 500;
}
.cta-feature i { color: var(--orange); }
.cta-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.cta-form-wrapper h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.cta-form-wrapper > p { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }
.cta-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px; color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(222,152,47,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover {
  background: var(--orange-dark);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   BRANDS
   ═══════════════════════════════════════════════════════════ */
.brands {
  padding: 60px 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
}
.brands-header { text-align: center; margin-bottom: 36px; }
.brands-header p {
  font-size: 14px; color: var(--gray-500);
  font-weight: 500; text-transform: uppercase;
  letter-spacing: 2px;
}
.brands-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px; flex-wrap: wrap;
}
.brand-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--gray-300);
  letter-spacing: 1px;
  transition: var(--transition);
}
.brand-item:hover { color: var(--navy); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-about img,
.footer-about .custom-logo { height: 44px; margin-bottom: 20px; }
.footer-about p { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}
.footer h4 {
  color: var(--white);
  font-size: 16px; font-weight: 700;
  margin-bottom: 24px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  transition: var(--transition);
}
.footer-links a:hover::before { opacity: 1; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact li {
  display: flex; align-items: flex-start;
  gap: 14px; margin-bottom: 18px;
  font-size: 14px;
}
.footer-contact i {
  color: var(--orange); margin-top: 4px;
  width: 16px; text-align: center;
}
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--orange); }

/* ═══════════════════════════════════════════════════════════
   SCROLL TO TOP
   ═══════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 200px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV OVERLAY
   ═══════════════════════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--navy-dark);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 14px 40px;
  border-radius: 10px;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--orange); background: rgba(255,255,255,0.04); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1440px) {
  .nav-links a { padding: 8px 10px; font-size: 12.5px; }
  .header-phone { font-size: 13px; }
  .header-cta .btn { padding: 10px 18px; font-size: 12px; }
  .header .container { gap: 10px; }
}

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual { order: 0; margin-bottom: 20px; }
  .hero-text { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-float-card { display: none; }
  .features-bar .container { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .about .container,
  .region .container,
  .cta-inner { grid-template-columns: 1fr; gap: 50px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .header-phone { display: none; }
  .mobile-toggle { display: flex; }
}

@media (max-width: 640px) {
  .top-bar { display: none; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 32px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .features-bar .container { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .feature-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-checks { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: 1fr; }
  .region-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-form-wrapper { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .brands-logos { gap: 30px; }
}
