/* ============================================================
   MVP PEINTURE — DESIGN SYSTEM
   ============================================================ */

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

/* --- Custom Properties --- */
:root {
  --navy:      #1e1b5c;
  --navy-dark: #130f3c;
  --navy-light:#2d2a78;
  --red:       #e0121f;
  --red-dark:  #b80e19;
  --white:     #FFFFFF;
  --gray-light:#F4F4F4;
  --gray-mid:  #E8E8E8;
  --gray-text: #6B6B6B;
  --dark:      #1a1742;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:    4px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 12px rgba(46,42,104,0.08);
  --shadow-md: 0 8px 32px rgba(46,42,104,0.14);
  --shadow-lg: 0 20px 60px rgba(46,42,104,0.20);

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --section-pad: 100px 0;
}

.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

/* --- Typography Scale --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1rem; }

.label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

/* --- Layout Utilities --- */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-40 { gap: 40px; }

.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-navy   { color: var(--navy); }
.text-red    { color: var(--red); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193,18,31,0.35);
}

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

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

.btn-phone {
  background: transparent;
  color: var(--white);
  border: none;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.btn-phone svg { flex-shrink: 0; }
.btn-phone:hover { color: #ffd0d3; }

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-nav.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
}

.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-logo-text span {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; 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%; }

.nav-cta { margin-left: 16px; }
.nav-cta .btn { padding: 12px 28px; font-size: 0.78rem; }

.nav-lang {
  display: flex;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.nav-lang a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.nav-lang a:hover,
.nav-lang a.active { color: var(--white); }
.nav-lang .sep { color: rgba(255,255,255,0.25); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 24px;
}
.nav-mobile a:hover { opacity: 1; color: var(--red); }
.nav-mobile .btn { align-self: flex-start; margin-top: 8px; }
.nav-mobile .lang-row {
  display: flex; gap: 16px;
  font-family: var(--font-head);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em;
}
.nav-mobile .lang-row a { color: rgba(255,255,255,0.5); border: none; padding: 0; font-size: 0.85rem; }
.nav-mobile .lang-row a.active { color: var(--white); }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../public/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-shape-1 {
  position: absolute;
  top: -80px; right: -80px;
  width: 600px; height: 600px;
  background: var(--red);
  clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%, 0% 30%);
  opacity: 0.08;
}

.hero-shape-2 {
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: var(--navy-light);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.25;
}

.hero-diagonal {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 120px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
}

.hero-content { padding: 60px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(193,18,31,0.15);
  border: 1px solid rgba(193,18,31,0.3);
  color: #ff8a94;
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-img-main {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.hero-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-img-main .img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(46,42,104,0.5) 0%, rgba(30,26,78,0.8) 100%);
}

.hero-img-accent {
  position: absolute;
  bottom: -32px; left: -32px;
  width: 180px; height: 180px;
  background: var(--red);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero-badge-float {
  position: absolute;
  top: 40px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-float-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge-float-text strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
}
.hero-badge-float-text span {
  font-size: 0.72rem;
  color: var(--gray-text);
  letter-spacing: 0.04em;
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 60px;
}
.section-header.centered { text-align: center; }
.section-header .label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--gray-text);
  font-size: 1.05rem;
  max-width: 560px;
}
.section-header.centered p { margin-inline: auto; }

/* --- Services Section --- */
.services-section {
  padding: var(--section-pad);
  background: var(--white);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--red);
  transition: height 0.4s ease;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card:hover::before { height: 100%; }

.service-icon {
  width: 64px; height: 64px;
  background: var(--gray-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(193,18,31,0.08);
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* --- Why Choose Us --- */
.why-section {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: rgba(193,18,31,0.06);
  border-radius: 50%;
}

.why-diagonal-top {
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.why-diagonal-bottom {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--gray-light);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.why-inner {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: rgba(255,255,255,0.88);
}

.why-point-icon {
  width: 44px; height: 44px;
  background: rgba(193,18,31,0.2);
  border: 1px solid rgba(193,18,31,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-point-body strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.why-point-body p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
}

.why-quote {
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--red);
  padding: 32px 36px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-top: 40px;
}
.why-quote p {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.why-quote span {
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  font-style: normal;
}

/* Why right side */
.why-visual-stack {
  position: relative;
  height: 520px;
}

.why-img-back {
  position: absolute;
  top: 0; right: 0;
  width: 78%;
  height: 80%;
  border-radius: var(--radius-lg);
  background: var(--navy-light);
  overflow: hidden;
}
.why-img-back img { width: 100%; height: 100%; object-fit: cover; }

.why-img-front {
  position: absolute;
  bottom: 0; left: 0;
  width: 62%;
  height: 62%;
  border-radius: var(--radius-lg);
  background: var(--navy-dark);
  border: 4px solid var(--navy);
  overflow: hidden;
}
.why-img-front img { width: 100%; height: 100%; object-fit: cover; }

.why-years-badge {
  position: absolute;
  bottom: 30px; right: -10px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-years-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.why-years-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* --- Experience / CTA Banner --- */
.experience-section {
  padding: var(--section-pad);
  background: var(--gray-light);
  position: relative;
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  background: var(--navy);
  border-radius: 16px;
  padding: 70px 80px;
  position: relative;
  overflow: hidden;
}

.experience-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--navy) 60%, var(--navy-dark) 100%);
}

.experience-inner::after {
  content: '';
  position: absolute;
  top: -40px; right: 100px;
  width: 200px; height: 200px;
  background: var(--red);
  opacity: 0.06;
  border-radius: 50%;
}

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

.experience-num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.experience-num span { color: var(--red); }

.experience-sub {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.experience-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
  line-height: 1.7;
}

.experience-cta {
  position: relative;
  z-index: 2;
  text-align: right;
  flex-shrink: 0;
}

/* --- Projects / Gallery --- */
.projects-section {
  padding: var(--section-pad);
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-img {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-dark) 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item.large .gallery-img { height: 380px; }

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,26,78,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

/* --- Contact CTA --- */
.contact-cta-section {
  padding: var(--section-pad);
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-cta-content h2 { color: var(--navy); }
.contact-cta-content p {
  color: var(--gray-text);
  margin: 20px 0 36px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}

.contact-info-icon {
  width: 38px; height: 38px;
  background: rgba(46,42,104,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item strong { font-weight: 600; color: var(--dark); }
.contact-info-item span { color: var(--gray-text); font-size: 0.88rem; }

/* --- Form styles --- */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.form-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-card > p {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(46,42,104,0.1);
}

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

.form-group .error-msg {
  font-size: 0.75rem;
  color: var(--red);
  display: none;
}
.form-group.has-error .error-msg { display: block; }

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

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-success, .form-error {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}

.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d;
}
.form-error {
  background: rgba(193,18,31,0.08);
  border: 1px solid rgba(193,18,31,0.25);
  color: var(--red);
}

/* --- Footer --- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
}

.footer-top {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.social-btn:hover { background: var(--red); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 2;
}
.footer-col address a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col address a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(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; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

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

.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 520px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb span { color: rgba(255,255,255,0.85); }

/* --- Services Page --- */
.services-full-section {
  padding: var(--section-pad);
}

.service-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.service-full-card:last-child { border-bottom: none; }

.service-full-card.reverse { direction: rtl; }
.service-full-card.reverse > * { direction: ltr; }

.service-full-visual {
  height: 360px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
  overflow: hidden;
  position: relative;
}
.service-full-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.service-full-content .label { margin-bottom: 12px; }
.service-full-content h2 { color: var(--navy); margin-bottom: 16px; font-size: 1.8rem; }
.service-full-content p {
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark);
}

.service-feature::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- About Page --- */
.about-story-section {
  padding: var(--section-pad);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}

.value-icon {
  width: 60px; height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.value-card p { color: var(--gray-text); font-size: 0.88rem; line-height: 1.7; }

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 2px 14px rgba(30,26,78,0.07);
}
.process-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.process-step p {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}

/* --- Quote page specific --- */
.quote-section {
  padding: 120px 0 var(--section-pad);
}

.quote-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.quote-form-wrap .form-card {
  padding: 56px 56px;
}

/* --- Misc --- */
.divider-angled {
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
  margin-top: -2px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(193,18,31,0.08);
  color: var(--red);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
}

/* Number section */
.numbers-section {
  padding: 80px 0;
  background: var(--navy);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.number-item {
  background: var(--navy);
  padding: 48px 36px;
  text-align: center;
}

.number-val {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.number-val span { color: var(--red); }
.number-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-weight: 600;
}

/* Testimonials */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--gray-light);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #f59e0b;
  font-size: 1rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

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

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: 1rem;
}

.testimonial-author-info strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}
.testimonial-author-info span {
  font-size: 0.78rem;
  color: var(--gray-text);
}

/* Area chips */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.area-chip {
  padding: 6px 16px;
  background: rgba(46,42,104,0.08);
  color: var(--navy);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
