/*
Theme Name: PRINTX Group
Theme URI: https://parawany-reklamowe.eu
Author: PRINTX GROUP
Author URI: https://parawany-reklamowe.eu
Description: Szybki, lekki szablon WordPress dla PRINTX GROUP — producenta parawanów reklamowych. Klasyczny szablon (Classic Theme) bez bloków Gutenberg, zoptymalizowany pod kątem wydajności.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-fast-theme
Tags: one-column, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/

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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --gray-1: #333333;
  --gray-2: #555555;
  --gray-3: #888888;
  --gray-4: #aaaaaa;
  --gray-5: #cccccc;
  --light: #f0f0f0;
  --white: #ffffff;
  --accent: #e84430;
  --accent-dark: #c9372a;
  --accent-light: #ff6b5a;
  --accent-glow: rgba(232, 68, 48, 0.3);
  --yellow: #f5c842;
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  border-radius: 0px !important;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
}

.navbar.scrolled {
  height: 64px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 30px rgba(0,0,0,0.3);
}

.navbar.scrolled .nav-logo {
  transform: scale(0.9);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  font-family: var(--font-display);
  letter-spacing: -1px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* WordPress nav menu output */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-4);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.6) 0%,
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.5) 70%,
    rgba(10,10,10,0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 48px;
  max-width: 1000px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s 0.3s forwards;
}

.hero-label-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s 0.5s forwards;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-4);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 44px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s 0.9s forwards;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--accent-light); }

.btn-outline {
  border: 1px solid var(--gray-2);
  color: var(--white);
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 1s 1.2s forwards;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-3);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gray-3), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-indicator {
  width: 3px;
  height: 30px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
}

.hero-indicator.active {
  background: var(--accent);
}

.hero-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--accent-light);
  transition: height 8s linear;
}

.hero-indicator.active::after {
  height: 100%;
}

/* ==================== STATS BAR ==================== */
.stats-bar {
  width: 100%;
  background: var(--accent);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ==================== SECTION COMMON ==================== */
.section {
  width: 100%;
  padding: 120px 48px;
}

.section-dark { background: var(--dark); }
.section-darker { background: var(--dark-2); }
.section-black { background: var(--black); }

.section-header {
  max-width: 700px;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-label-line {
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.section-title span {
  color: var(--accent);
}

.section-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-3);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 560px;
}

/* ==================== ABOUT SECTION ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-image {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.about-image img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,68,48,0.15), transparent);
  pointer-events: none;
}

.about-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text-block {
  margin-top: 28px;
}

.about-text-block p {
  font-size: 15px;
  color: var(--gray-4);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-text-block p:last-of-type {
  margin-bottom: 0;
  color: var(--accent-light);
  font-weight: 500;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.about-feature {
  padding: 24px 0;
  border-top: 1px solid var(--gray-1);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,68,48,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 18px;
}

.about-feature h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-feature p {
  font-size: 14px;
  color: var(--gray-3);
  line-height: 1.7;
}

/* ==================== GALLERY ==================== */
.gallery {
  width: 100%;
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-info h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.gallery-item-info span {
  font-size: 12px;
  color: var(--accent-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Large items */
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* ==================== PRODUCTS SECTION ==================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  cursor: pointer;
  border-right: 1px solid rgba(255,255,255,0.04);
}

.product-card:last-child {
  border-right: none;
}

.product-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card-bg {
  transform: scale(1.08);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 100%);
  transition: background 0.4s;
}

.product-card:hover .product-card-overlay {
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.9) 100%);
}

.product-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  z-index: 2;
}

.product-number {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.product-card-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.product-card-content p {
  font-size: 14px;
  color: var(--gray-3);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s;
}

.product-link:hover { gap: 14px; }

/* ==================== PROCESS SECTION ==================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  padding: 48px 32px;
  border-right: 1px solid var(--gray-1);
  position: relative;
  transition: background 0.4s;
}

.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(232,68,48,0.03); }

.process-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  margin-bottom: -20px;
}

.process-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 20px;
  transition: all 0.4s;
}

.process-step:hover .process-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--gray-3);
  line-height: 1.7;
}

/* ==================== PROMO SECTION ==================== */
.promo {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.promo-bg {
  position: absolute;
  inset: 0;
}

.promo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.4) 100%);
}

.promo-content {
  position: relative;
  z-index: 2;
  padding: 80px 48px;
  max-width: 650px;
}

.promo-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.promo-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.promo-content h2 span {
  color: var(--accent);
}

.promo-content p {
  font-size: 17px;
  color: var(--gray-4);
  line-height: 1.8;
  margin-bottom: 36px;
}

.promo-features {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.promo-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.promo-feature i {
  color: var(--accent);
  font-size: 16px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.testimonial-card {
  padding: 48px 36px;
  border-right: 1px solid var(--gray-1);
  transition: background 0.4s;
}

.testimonial-card:last-child { border-right: none; }
.testimonial-card:hover { background: rgba(232,68,48,0.03); }

.testimonial-stars {
  color: var(--yellow);
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-4);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--gray-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-info h5 {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 12px;
  color: var(--gray-3);
}

/* ==================== CONTACT SECTION ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.contact-info {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-1);
}

.contact-info-item:first-child { border-top: 1px solid var(--gray-1); }

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,68,48,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 18px;
}

.contact-info-text h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 15px;
  color: var(--gray-3);
  line-height: 1.6;
}

.contact-form-wrap {
  padding: 80px 64px;
  background: var(--dark-2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark-3);
  border: 1px solid var(--gray-1);
  color: var(--white);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--accent-light);
}

/* ==================== MAP ==================== */
.map-section {
  width: 100%;
  height: 350px;
  position: relative;
  background: var(--dark-2);
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  position: relative;
}

.map-grid-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: 40px 40px;
}

.map-pin {
  text-align: center;
  z-index: 2;
}

.map-pin i {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.map-pin span {
  font-size: 14px;
  color: var(--gray-3);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ==================== FOOTER ==================== */
.site-footer {
  width: 100%;
  padding: 80px 48px 0;
  background: var(--dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--gray-1);
}

.footer-brand p {
  font-size: 15px;
  color: var(--gray-3);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 360px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  transition: all 0.3s;
  font-size: 14px;
}

.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232,68,48,0.1);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin: 0;
  padding: 0;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-3);
  padding: 6px 0;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-3);
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--gray-3);
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--accent); }

/* ==================== SCROLL ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { border-right: none; border-bottom: 1px solid var(--gray-1); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 1000;
    padding: 20px;
  }
  .nav-links.active ul {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .section { padding: 80px 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { min-height: 300px; }
  .about-content { padding: 40px 24px; }
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { padding: 40px 24px; }
  .contact-form-wrap { padding: 40px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--gray-1); }
  .stats-bar { flex-wrap: wrap; padding: 24px; }
  .stat-divider { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-indicators { display: none; }
  .promo-features { flex-direction: column; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Mobile menu */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}

.nav-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-mobile-toggle { display: flex; }
}

/* ==================== LOADING SCREEN ==================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s, visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--gray-1);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent);
  animation: loadBar 1.5s forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

.loader-text {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gray-3);
}

/* ==================== BLOG / SINGLE POST ==================== */
.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.post-content .entry-header {
  margin-bottom: 40px;
}

.post-content .entry-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.post-content .entry-meta {
  font-size: 13px;
  color: var(--gray-3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.post-content .entry-meta a {
  color: var(--accent);
}

.post-content .featured-image {
  width: 100%;
  min-height: 400px;
  margin-bottom: 40px;
  overflow: hidden;
}

.post-content .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content .entry-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--gray-4);
}

.post-content .entry-content h2,
.post-content .entry-content h3,
.post-content .entry-content h4 {
  font-family: var(--font-display);
  color: var(--white);
  margin-top: 32px;
  margin-bottom: 16px;
}

.post-content .entry-content p {
  margin-bottom: 20px;
}

.post-content .entry-content a {
  color: var(--accent);
}

.post-content .entry-content a:hover {
  color: var(--accent-light);
}

.post-content .entry-content img {
  max-width: 100%;
  height: auto;
}

.post-content .entry-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--gray-3);
}

.post-content .post-navigation {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-1);
  display: flex;
  justify-content: space-between;
}

.post-content .post-navigation a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-4);
  transition: color 0.3s;
}

.post-content .post-navigation a:hover {
  color: var(--accent);
}

/* ==================== PAGE TEMPLATE ==================== */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.page-content .entry-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.page-content .entry-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--gray-4);
}

.page-content .entry-content h2,
.page-content .entry-content h3,
.page-content .entry-content h4 {
  font-family: var(--font-display);
  color: var(--white);
  margin-top: 32px;
  margin-bottom: 16px;
}

.page-content .entry-content p {
  margin-bottom: 20px;
}

.page-content .entry-content a {
  color: var(--accent);
}

.page-content .entry-content a:hover {
  color: var(--accent-light);
}

.page-content .entry-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--gray-3);
}

/* ==================== 404 ==================== */
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.error-404 h1 {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.error-404 p {
  font-size: 18px;
  color: var(--gray-3);
  margin: 20px 0 32px;
}

/* ==================== WIDGETS ==================== */
.widget {
  margin-bottom: 32px;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-1);
}

.widget a {
  font-size: 14px;
  color: var(--gray-3);
  transition: color 0.3s;
}

.widget a:hover {
  color: var(--accent);
}
