/* ============================================================
   VS PRINTERS - Main Stylesheet
   Color Theme: Red (#C0392B), Black (#111), White (#FFF)
   ============================================================ */

/* ---------- Google Fonts ---------- */
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Raleway:wght@300;400;500;600;700&display=swap'); */

/* ---------- CSS Variables ---------- */
:root {
  --red:    #b45722;
  --red-dark: #c26c09;
  --red-light: #d37313;
  --black:  #111111;
  --dark:   #1a1a1a;
  --gray:   #444;
  --light-gray: #f5f5f5;
  --white:  #ffffff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
  --transition: 0.35s ease;
  --shadow: 0 8px 32px rgba(0,0,0,0.18);
  --shadow-red: 0 4px 24px rgba(192,57,43,0.3);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.7;
}

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

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  transition: var(--transition);
}

.navbar.scrolled {
  height: 60px;
  background: rgba(17,17,17,0.99);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span { color: var(--red); }

.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background:transparent;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Language Toggle */
.lang-btn {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--red);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(17,17,17,0.98);
  z-index: 999;
  padding: 1rem 0;
  transform: translateY(-120%);
  transition: transform 0.4s ease;
}

.mobile-nav.open {
  transform: translateY(0);
  display: flex;
}

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  padding: 1rem 5%;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--red); padding-left: calc(5% + 8px); }

.mobile-nav .lang-btn {
  margin: 1rem 5%;
  align-self: flex-start;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before { width: 300px; height: 300px; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(192,57,43,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 100px 5%; }
.section-dark { background: var(--dark); color: var(--white); }
.section-gray { background: var(--light-gray); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.8;
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }

.divider {
  width: 60px; height: 4px;
  background: var(--red);
  margin: 1.5rem 0;
  border-radius: 2px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .divider { margin: 1.5rem auto; }

/* ============================================================
   HERO SECTION (index.html)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17,17,17,0.92) 0%, rgba(51, 30, 27, 0.3) 50%, rgba(17,17,17,0.95) 100%),
    url('VS\ Background.jpeg') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(192,57,43,0.2) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(203, 96, 25, 0.2);
  border: 1px solid rgba(192,57,43,0.5);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.3rem;
  animation: fadeInUp 0.8s ease 0.4s both;
  color:white;
}

.hero-title .red { color:white; }

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
  animation: fadeIn 1.5s ease 1.2s both;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--red));
  animation: scrollPulse 2s infinite;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--red);
  padding: 2rem 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item { color: var(--white); }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.3rem;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.7), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .overlay { opacity: 1; }

.service-card-body { padding: 1.5rem; }

.service-icon {
  width: 44px; height: 44px;
  background: rgba(192,57,43,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: background var(--transition);
}

.service-card:hover .service-icon { background: var(--red); }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: gap var(--transition);
}

.service-card:hover .card-link { gap: 10px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
  align-items: center;
}

.about-intro-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.about-intro-img img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.about-intro-img::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 3px solid var(--red);
  border-radius: 8px;
  z-index: -1;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.mission-card {
  background: var(--white);
  border-left: 4px solid var(--red);
  padding: 2rem;
  border-radius: 0 8px 8px 0;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.mission-card:hover { transform: translateX(6px); }

.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-card h3 span { color: var(--red); }

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child { grid-column: 1 / 2; grid-row: 1 / 3; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(192,57,43,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 2rem;
  color: var(--white);
}

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

/* Map */
.map-container {
  margin-top: 3rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--red);
}

.map-container iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ============================================================
   PORTFOLIO / OUR WORKS
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.portfolio-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.9) 0%, rgba(192,57,43,0.4) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
  text-align: center;
  color: var(--white);
}

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

.portfolio-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.portfolio-overlay p {
  font-size: 0.82rem;
  opacity: 0.8;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5%;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2px;
}

.contact-detail-text span {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

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

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

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

.form-error {
  color: var(--red);
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
}

.form-success {
  background: #e8f5e9;
  border: 1px solid #4CAF50;
  color: #2e7d32;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin-top: 1rem;
  display: none;
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   ADMIN PAGE
   ============================================================ */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: 2rem;
}

.admin-login-card {
  background: var(--black);
  border: 2px solid var(--red);
  border-radius: 12px;
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.admin-login-card h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.admin-login-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.admin-form .form-group input {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}

.admin-form .form-group input:focus { border-color: var(--red); }
.admin-form .form-group label { color: rgba(255,255,255,0.7); }

.admin-dashboard { display: none; }

.admin-panel {
  min-height: 100vh;
  background: var(--light-gray);
  padding-top: 80px;
}

.admin-header {
  background: var(--black);
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 2px solid var(--red);
}

.admin-header h1 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.4rem;
}

.admin-content {
  padding: 3rem 5%;
}

.admin-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
  margin-bottom: 2rem;
}

.admin-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.works-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.work-preview {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.work-preview img {
  width: 100%; height: 140px;
  object-fit: cover;
}

.work-preview-body {
  padding: 0.75rem;
}

.work-preview-body strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.work-preview-body p {
  font-size: 0.78rem;
  color: var(--gray);
}

.work-preview .delete-btn {
  position: absolute;
  top: 6px; right: 6px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 4px;
  width: 28px; height: 28px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}

.work-preview .delete-btn:hover { background: var(--red-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 5rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo { margin-bottom: 1rem; font-size: 1.4rem; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--red);
}

.footer-section ul li {
  margin-bottom: 0.6rem;
}

.footer-section ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-section ul li a:hover { color: var(--red); padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a { color: var(--red); }

/* Social Icons */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-red);
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50%       { opacity: 0.3; height: 20px; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 5% 3rem;
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(192,57,43,0.4) 100%),
    url('https://images.unsplash.com/photo-1611532736597-de2d4265fba3?w=1400&q=80') center/cover no-repeat;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.page-hero-content .breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}

.page-hero-content .breadcrumb a { color: var(--red); }

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--red), rgba(192,57,43,0.2));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-red);
}

.step h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.82rem;
  color: var(--gray);
}

/* Testimonial */
.testimonial-strip {
  background: var(--red);
  padding: 4rem 5%;
  text-align: center;
  color: var(--white);
}

.testimonial-strip blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

.testimonial-strip cite {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0.8;
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .lang-btn { display: none; }
  .hamburger { display: flex; }

  .about-intro { grid-template-columns: 1fr; }
  .about-intro-img { order: -1; }
  .about-intro-img img { height: 300px; }
  .about-intro-img::before { display: none; }

  .mission-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: 1/3; grid-row: auto; }

  .contact-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 70px 5%; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: auto; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

/* Print Texture Overlay for hero pages */
.page-hero-bg.about-bg {
  background:
    linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(192,57,43,0.4) 100%),
    url('https://images.unsplash.com/photo-1457369804613-52c61a468e7d?w=1400&q=80') center/cover no-repeat;
}

.page-hero-bg.services-bg {
  background:
    linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(192,57,43,0.4) 100%),
    url('https://images.unsplash.com/photo-1618519764620-7703522a0bea?w=1400&q=80') center/cover no-repeat;
}

.page-hero-bg.contact-bg {
  background:
    linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(192,57,43,0.4) 100%),
    url('https://images.unsplash.com/photo-1586075010923-2dd4570fb338?w=1400&q=80') center/cover no-repeat;
}
